prompto.utils.ErrorLogger Maven / Gradle / Ivy
The newest version!
package prompto.utils;
public class ErrorLogger extends PrintStreamLogger {
@SuppressWarnings("resource")
public static void install() {
System.setErr(new ErrorLogger());
}
protected ErrorLogger() {
super(ErrorLogger.class.getName());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy