package com.nicewuerfel.blockown.output;
import java.util.logging.Level;
public class DebugOutput extends DefaultOutput {
public DebugOutput() {
super();
getLogger().setLevel(Level.ALL);
}
@Override
public void printException(Throwable throwable) {
getLogger().log(Level.WARNING, "Exception in BlockOwn", throwable);
}
@Override
public void printException(String message) {
getLogger().log(Level.WARNING, message);
}
@Override
public void printException(String message, Throwable throwable) {
getLogger().log(Level.WARNING, message, throwable);
}
}