Upping the logging threshold.
This commit is contained in:
@@ -58,7 +58,7 @@ public class LoggingThreadLocal {
|
|||||||
public static void stop(boolean writeOperation) {
|
public static void stop(boolean writeOperation) {
|
||||||
long start = _start.get();
|
long start = _start.get();
|
||||||
long time = System.currentTimeMillis() - start;
|
long time = System.currentTimeMillis() - start;
|
||||||
if (time > 10) {
|
if (time > 100) {
|
||||||
String str = "Processing took (" + writeOperation + ") " + time + "ms: \n" + _logLocal.get().toString();
|
String str = "Processing took (" + writeOperation + ") " + time + "ms: \n" + _logLocal.get().toString();
|
||||||
try {
|
try {
|
||||||
synchronized (_fos) {
|
synchronized (_fos) {
|
||||||
|
|||||||
Reference in New Issue
Block a user