Add showing error stack trace for warnTimeConsuming()

This commit is contained in:
Nikolay Krasko
2012-08-27 19:23:32 +04:00
parent c788636365
commit b82d06cb60
@@ -38,6 +38,9 @@ public final class ApplicationUtils {
return; return;
} }
logger.warn("This operation is time consuming and must not be called on EDT"); logger.warn("This operation is time consuming and must not be called on EDT.");
//noinspection CallToPrintStackTrace
new Throwable().printStackTrace();
} }
} }