Upping the logging threshold.

This commit is contained in:
marcins78@gmail.com
2011-11-16 23:28:31 +00:00
parent 96c0a9be6d
commit 7dc4e87a97

View File

@@ -58,7 +58,7 @@ public class LoggingThreadLocal {
public static void stop(boolean writeOperation) {
long start = _start.get();
long time = System.currentTimeMillis() - start;
if (time > 10) {
if (time > 100) {
String str = "Processing took (" + writeOperation + ") " + time + "ms: \n" + _logLocal.get().toString();
try {
synchronized (_fos) {