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

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