I am using Java Logging (not Log4j). I want to send logs of level INFO and below it to System.out, and WARNING and SEVERE to System.err. I believe it looks much nicer, because I can easily distinguish error from info and below it. Is there anyway to do that?
In general, it is possible to tell Logger to log message below a certain level. Bu default it goes higher than the specified level.
Thanks a lot