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
Old question but to help other developers:
You can also just use logger.setUseParentHandlers(false) on your logger.
logger.setUseParentHandlers(false)