Java Logger only to file, no screen output

前端 未结 5 1345
悲哀的现实
悲哀的现实 2021-02-19 12:44

I have quite a simple problem but can\'t find a solution for it. I have a logger with a file handler added, but it still spams the hell out of my console. How could I get the lo

5条回答
  •  一个人的身影
    2021-02-19 13:16

    The simplest way to guarantee that nothing will be written to the console is to put:

    java.util.logging.ConsoleHandler.level = NONE
    

    in your logging configuration file.

提交回复
热议问题