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

riot.riotctl.logger.StdOutLogger Maven / Gradle / Ivy

Go to download

RIoT Control is a library used by various build plugins to deploy Java applications to small form factor computers

There is a newer version: 0.7.1
Show newest version
package riot.riotctl.logger;

import riot.riotctl.Logger;

public final class StdOutLogger extends Logger {

	@Override
	public void error(String s) {
		System.err.println(s);
	}
	
	@Override
	public void warn(String s) {
		System.err.println(s);
	}
	
	@Override
	public void info(String s) {
		System.out.println(s);
	}

	@Override
	public void debug(String s) {
		System.out.println(s);
	}



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy