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 solarmist
Recipients solarmist
Date 2013-09-05.23:56:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378425368.84.0.428778978895.issue18941@psf.upfronthosting.co.za>
In-reply-to
Content
For low volume loggers RotatingFileHandler and TimedRotatingFileHandler will create possibly unnecessary files on doRollover, since they don't check the value of delay when opening the new self.stream.

self.stream = self._open()

should be something like

if not self.delay:
    self.stream = self._open()
History
Date User Action Args
2013-09-05 23:56:09solarmistsetrecipients: + solarmist
2013-09-05 23:56:08solarmistsetmessageid: <1378425368.84.0.428778978895.issue18941@psf.upfronthosting.co.za>
2013-09-05 23:56:08solarmistlinkissue18941 messages
2013-09-05 23:56:08solarmistcreate