Skip to content

Commit

Permalink
Fix an incorrect SLF4J logger call
Browse files Browse the repository at this point in the history
This issue was found by SLF4J Helper for NetBeans IDE:
http://plugins.netbeans.org/plugin/72557/
  • Loading branch information
dtrebbien committed Nov 6, 2017
1 parent 9cc90a8 commit f6b924c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static void clear(DeserializationContext context, CacheScope scope) {
withCache(context, cache -> {
if (scope == CacheScope.GLOBAL_SCOPE) {
if (logEnabled)
logger.debug("clearing global-level serialization cache", cache.globalCache.size());
logger.debug("clearing global-level serialization cache with size {}", cache.globalCache.size());
cache.globalCache.clear();
}
if (logEnabled)
Expand Down

0 comments on commit f6b924c

Please sign in to comment.