Star

First steps

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