Given the following main:
public static void main(String[] args) {
System.out.println("System.out.println");
Logger.getGlobal().setLevel(Level.INFO);
Logger.getGlobal().log(Level.INFO, "Logger.INFO");
}
I get the following output:

If there a way to get a better output for Logger? I would much prefer a single line output and a coherent color highlighting (SEVERE=red, INFO=green, ... like logcat for Android basically).
Thanks
Logger?