This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David Escott
Recipients David Escott
Date 2016-03-14.18:01:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457978506.77.0.246614135279.issue26559@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation suggests using a MemoryHandler object to buffer log messages and conditionally output them. https://docs.python.org/3/howto/logging-cookbook.html#buffering-logging-messages-and-outputting-them-conditionally

However the documentation does not make clear that this only works because of the call to super(MemoryHandler, handler).flush() prior to logger.removeHandler(handler).

A direct call to handler.flush(), or simply leaving the handler unflushed until process shutdown will result in the messages still being printed, when the MemoryHandler calls self.flush() during its shutdown routines.

To be honest this behavior of MemoryHandler doesn't make much sense to me, since the MemoryHandler is in fact flushing when flush_level has not been satisfied.

I would suggest adding an option to the MemoryHandler "flush_on_close" defaulting to True, and then simply constructing the MemoryHandler with that option set to False. That would not affect the existing users of the handler, but it would result in a tool which would actually match the only example I have come across of a MemoryHandler in use online.
History
Date User Action Args
2016-03-14 18:01:46David Escottsetrecipients: + David Escott
2016-03-14 18:01:46David Escottsetmessageid: <1457978506.77.0.246614135279.issue26559@psf.upfronthosting.co.za>
2016-03-14 18:01:46David Escottlinkissue26559 messages
2016-03-14 18:01:46David Escottcreate