Quellcode durchsuchen

Logging change.

tags/1.0.4
Yuk-Ming Lam vor 5 Jahren
Ursprung
Commit
7dd28add82
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/main/java/altk/comm/engine/Postback.java

+ 2
- 2
src/main/java/altk/comm/engine/Postback.java Datei anzeigen

@@ -415,7 +415,7 @@ public class Postback
try
{
threadsWaitingToPost++;
myLogger.debug(String.format("Waiting to post report - postqueue size %d, total waiting %d", postQueue.size(), threadsWaitingToPost));
myLogger.debug(String.format("Waiting for space in postQueue - size %d, total waiting %d", postQueue.size(), threadsWaitingToPost));
postQueue.wait(QUEUE_WAIT * 1000);
threadsWaitingToPost--;
}
@@ -426,7 +426,7 @@ public class Postback
}
}
}
myLogger.info("Interrupted while waiting for space to queue report");
myLogger.info("Interrupted while waiting for space in postQueue");
return false;
}


Laden…
Abbrechen
Speichern