com.github.tobiasrm.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinylog-singlelevel-cw Show documentation
Show all versions of tinylog-singlelevel-cw Show documentation
A Tinylog console writer extension to restrict writers to single log levels (e.g. for level-specific colored logs).
The newest version!
package com.github.tobiasrm;
import org.pmw.tinylog.Logger;
/** Main class for color demo.
*/
public class Main {
public static void main(String[] args) {
Logger.trace("hello trace-world");
Logger.debug("hello debug-world");
Logger.info("hello info-world");
Logger.warn("hello warn-world");
Logger.error("hello error-world");
}
}