Skip to content

Commit

Permalink
Merge pull request #3413 from ebean-orm/feature/fix-logging-naturalKey
Browse files Browse the repository at this point in the history
Fix logging message for naturalKey MPUT to include the natural key properties
  • Loading branch information
rbygrave committed May 31, 2024
2 parents 5f218e1 + 59daf56 commit d817dcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ void beanCachePutAllDirect(Collection<EntityBean> beans) {

if (natKeys != null && !natKeys.isEmpty()) {
if (natLog.isLoggable(DEBUG)) {
natLog.log(DEBUG, " MPUT {0}({1}, {2})", cacheName, naturalKey, natKeys.keySet());
natLog.log(DEBUG, " MPUT {0}({1}, {2})", cacheName, Arrays.toString(naturalKey), natKeys.keySet());
}
naturalKeyCache.putAll(natKeys);
}
Expand Down

0 comments on commit d817dcb

Please sign in to comment.