riot.riotctl.logger.StdOutLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riotctl Show documentation
Show all versions of riotctl Show documentation
RIoT Control is a library used by various build plugins to deploy Java applications to small form factor computers
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);
}
}