Added stacktrace for errors.

This commit is contained in:
FrozenCow 2011-02-18 19:43:45 +01:00
parent d11b0819a6
commit af93366b0f

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();
}
}