I\'m using the standard ConsoleHandler from java.util.logging and by default the console output is directed to the error stream (i.e. System.
ConsoleHandler
java.util.logging
System.
I figured out one way. First remove the default console handler:
setUseParentHandlers(false);
Then subclass ConsoleHandler and in the constructor:
setOutputStream(System.out);