All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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