Added stacktrace for errors.

This commit is contained in:
FrozenCow 2011-02-18 19:43:45 +01:00
parent d3cf795ebb
commit 723e7da8d3
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ public class LogDebugger implements Debugger {
@Override
public void error(String message, Throwable thrown) {
log.log(Level.SEVERE, prepend + message);
thrown.printStackTrace();
}
}