JNanoLog
A tiny (nano) logging API that can replace the largely used System.out
...This API does not aim to replace large advanced APIs like Log4J which aims production but it can replace it in small and during first stage of development because it does not need any configuration and start with low logging level.
The API is hard to extend and does not intend to be extended but it can, with some effort, support other output streams than System.out.
To get started :
1. Import the Logger class,
2. Start logging : Logger.quickLog("Hello World!").
No additional configuration is needed.