[issue14539] logging module: logger does not print log message with logging.INFO level

2012-04-10 Thread zodalahtathi
zodalahtathi added the comment: Thank you for the explanation -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue14539] logging module: logger does not print log message with logging.INFO level

2012-04-10 Thread Vinay Sajip
Vinay Sajip added the comment: You haven't configured any handlers for the logger, so by default it wouldn't actually log anything. However, when no handlers are configured, logging uses an internal "last resort" handler to print the message to sys.stderr, and this handler has a threshold of

[issue14539] logging module: logger does not print log message with logging.INFO level

2012-04-09 Thread R. David Murray
Changes by R. David Murray : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue14539] logging module: logger does not print log message with logging.INFO level

2012-04-09 Thread zodalahtathi
New submission from zodalahtathi : The logging module does not print logging message when the logging level is set to a level inferior to the default level. I can reproduce it using the Python3 (3.2.2) package from Ubuntu 12.04 beta2, or using a hand compiled Python 3.2.2. The bug is NOT presen