Improved error logging

This commit is contained in:
Reinhard Pointner 2019-03-08 14:53:29 +07:00
parent e5296ca6f4
commit 621655a532
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public abstract class ScriptShellBaseClass extends Script {
}
// print full stack trace if debug logging is enabled
debug.log(Level.ALL, "Suppressed Exception: " + t, t);
debug.log(Level.ALL, t, message("Suppressed Exception", t));
}
public void die(Object cause) throws Throwable {