You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (log.isDebugEnabled() && shouldLog())log.debug("INCR : APP " + _appName + ", Took " + TimeUnit.NANOSECONDS.toMillis(duration)
2950
-
+ " milliSec for key : " + key + " with value as " +currentValue);
2949
+
if (log.isDebugEnabled() && shouldLog())
2950
+
log.debug("INCR : status {} for APP {}, Took {} milliSec for key : {} with value as {}", status, _appName, TimeUnit.NANOSECONDS.toMillis(duration), key,currentValue);
2951
2951
}
2952
2952
}
2953
2953
@@ -3033,7 +3033,8 @@ public long decr(String key, long by, long defaultVal, int timeToLive) throws EV
if (log.isDebugEnabled() && shouldLog()) log.debug("DECR : APP " + _appName + ", Took " + TimeUnit.NANOSECONDS.toMillis(duration) + " milliSec for key : " + key + " with value as " + currentValue);
3036
+
if (log.isDebugEnabled() && shouldLog())
3037
+
log.debug("DECR : status {} for APP {}, Took {} milliSec for key : {} with value as {}", status, _appName, TimeUnit.NANOSECONDS.toMillis(duration), key, currentValue);
0 commit comments