How do I change java logging console output from std err to std out

Posted by Obediah Stane on Stack Overflow See other posts from Stack Overflow or by Obediah Stane
Published on 2008-10-11T15:00:11Z Indexed on 2010/05/25 15:51 UTC
Read the original article Hit count: 168

Filed under:
|

I'm using the standard logger from java.util.logging and by default the console output is directed to the error stream (i.e. same as System.err.println). How do I change the console output to the output stream (i.e. same as System.out.println)

© Stack Overflow or respective owner

Related posts about java

Related posts about logging