There was an error while loading. Please reload this page.
1 parent 3dcc218 commit 8bb07e1Copy full SHA for 8bb07e1
1 file changed
src/main/java/org/asteriskjava/lock/Locker.java
@@ -258,7 +258,7 @@ static void dumpStats()
258
boolean activity = false;
259
for (Lockable lockable : lockables)
260
{
261
- if (lockable.wasLockBlocked() || first)
+ if (lockable.wasLockBlocked())
262
263
int waited = lockable.getLockWaited();
264
int waitTime = lockable.getLockTotalWaitTime();
@@ -279,7 +279,7 @@ static void dumpStats()
279
if (first || activity)
280
281
282
- logger.warn("Dump Lock Stats finished. Will dump every minute when there is contention...");
+ logger.warn("Will dump Lock stats each minute when there is contention...");
283
first = false;
284
}
285
0 commit comments