We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772d200 commit 2887349Copy full SHA for 2887349
src/main/java/org/apache/ibatis/mapping/CacheBuilder.java
@@ -91,6 +91,8 @@ public Cache build() {
91
setCacheProperties(cache);
92
}
93
cache = setStandardDecorators(cache);
94
+ } else if (!LoggingCache.class.isAssignableFrom(cache.getClass())) {
95
+ cache = new LoggingCache(cache);
96
97
return cache;
98
0 commit comments