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