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 enrico
Recipients enrico
Date 2018-02-24.10:31:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519468279.94.0.467229070634.issue32935@psf.upfronthosting.co.za>
In-reply-to
Content
In the handlers documentation, MemoryHandler directly follows SMTPHandler. SMTPHandler does not document that it is sending an email per every logging invocation, but one can sort of guess it.

Right afterwards, there is the documentation of MemoryHandler, which seems to hint that one can use it to buffer up log lines and send all of them with SMTPHandler at flush time, by using it as a target.

What really happens when trying to do that, is that at flush time an email per buffered log line is sent instead.

It would have saved me significant time and frustration if I had found in SMTPHandler a note saynig that in order to buffer up all log messages and send them as a single email, one needs to reimplement BufferingHandler and all the email composition/sending logic, and the existing handlers provide no build-in facility for doing that.
History
Date User Action Args
2018-02-24 10:31:19enricosetrecipients: + enrico
2018-02-24 10:31:19enricosetmessageid: <1519468279.94.0.467229070634.issue32935@psf.upfronthosting.co.za>
2018-02-24 10:31:19enricolinkissue32935 messages
2018-02-24 10:31:19enricocreate