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
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.