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

com.github.tobiasrm.Main Maven / Gradle / Ivy

Go to download

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");
		
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy