Fix the issue reference for removing the exception stacktrace logging

This commit is contained in:
games647 2016-06-01 18:30:46 +02:00
parent 71a9abdad9
commit 1cbd11a753

View File

@ -70,7 +70,7 @@ public final class ConsoleLogger {
public static void debug(String message) {
if (enableDebug) {
//creating and filling an exception is a expensive call
//->so it should be removed as soon #418 is fixed
//->so it should be removed as soon #419 is fixed
//logger.isLoggable does not work because the plugin logger is always ALL
logger.log(Level.FINE, message + ' ' + Thread.currentThread().getName(), new Exception());