Java Logger only to file, no screen output

前端 未结 5 1336
悲哀的现实
悲哀的现实 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

    I use:

    Logger logger = Logger.getLogger("MyLog");
        Logger parentLog= logger.getParent();
        if (parentLog!=null&&parentLog.getHandlers().length>0) parentLog.removeHandler(parentLog.getHandlers()[0]);
    

提交回复
热议问题