First steps
- Download the tinylog JAR
- Add the JAR to your classpath
- Use the logger:
import org.pmw.tinylog.Logger; public class Application { public static void main(String[] args) { Logger.info("My first log entry"); } }
import org.pmw.tinylog.Logger;
public class Application {
public static void main(String[] args) {
Logger.info("My first log entry");
}
}