Python: logging.streamhandler is not sending logs to stdout
You have to set the level of the logger, not only the level of the handler: mylogger.setLevel(logging.DEBUG) Here is a nice graphic of the logging workflow, where you can see that either the logger and the handler check for the log level: http://docs.python.org/2/howto/logging.html#logging-flow The default logLevel is WARNING, so even if you set the level … Read more