better logging
This commit is contained in:
parent
9965f09f1c
commit
44e27c9d7d
@ -52,7 +52,7 @@ public class SigarProxyCache
|
||||
|
||||
//poor mans logging
|
||||
private void debug(String msg) {
|
||||
System.out.println("[DEBUG] SigarProxyCache - " + msg);
|
||||
SigarLog.getLogger("SigarProxyCache").debug(msg);
|
||||
}
|
||||
|
||||
private static final Class[] VOID_SIGNATURE = new Class[0];
|
||||
@ -153,15 +153,16 @@ public class SigarProxyCache
|
||||
cacheVal.expire = this.expire;
|
||||
}
|
||||
|
||||
if (cacheVal.value != null) {
|
||||
String argDebug = "";
|
||||
|
||||
if (debugEnabled) {
|
||||
if ((args != null) && (args.length != 0)) {
|
||||
argDebug = " with args=" +
|
||||
getDebugArgs(args, argKey);
|
||||
}
|
||||
}
|
||||
|
||||
if (cacheVal.value != null) {
|
||||
if (debugEnabled) {
|
||||
debug("found " + method.getName() +
|
||||
" in cache" + argDebug);
|
||||
}
|
||||
@ -175,6 +176,12 @@ public class SigarProxyCache
|
||||
cacheVal.value = null;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (debugEnabled) {
|
||||
debug(method.getName() +
|
||||
" NOT in cache" + argDebug);
|
||||
}
|
||||
}
|
||||
|
||||
if (cacheVal.value == null) {
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user