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 ddc48a7 commit 7b26ea3Copy full SHA for 7b26ea3
src/main/java/org/apache/ibatis/cache/decorators/LoggingCache.java
@@ -23,14 +23,14 @@
23
24
public class LoggingCache implements Cache {
25
26
- private static final Log log = LogFactory.getLog(LoggingCache.class);
27
-
+ private Log log;
28
private Cache delegate;
29
protected int requests = 0;
30
protected int hits = 0;
31
32
public LoggingCache(Cache delegate) {
33
this.delegate = delegate;
+ this.log = LogFactory.getLog(getId());
34
}
35
36
@Override
0 commit comments