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