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

后端 未结 13 1580
旧巷少年郎
旧巷少年郎 2020-11-27 06:50

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.

13条回答
  •  渐次进展
    2020-11-27 07:30

    I figured out one way. First remove the default console handler:

    setUseParentHandlers(false);

    Then subclass ConsoleHandler and in the constructor:

    setOutputStream(System.out);

提交回复
热议问题