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 vinay.sajip
Recipients pycurry, vinay.sajip
Date 2009-01-20.23:28:43
SpamBayes Score 0.0035166803
Marked as misclassified No
Message-id <1232494125.59.0.872593238484.issue5013@psf.upfronthosting.co.za>
In-reply-to
Content
Fixes now in trunk and release26-maint.

Note that RotatingFileHandler will open the file when shouldRollover()
is called - which it is from emit() - and doRollover() will also open
the file even if a delay parameter is set.

TimedRotatingFileHandler will not open a file if delay is set until
rollover actually occurs, as shouldRollover goes by time only rather
than file size.

The delay parameter is intended only as a hint to the handlers to delay
opening until as long as possible, and they will try to honour this as
far as is practicable.
History
Date User Action Args
2009-01-20 23:28:45vinay.sajipsetrecipients: + vinay.sajip, pycurry
2009-01-20 23:28:45vinay.sajipsetmessageid: <1232494125.59.0.872593238484.issue5013@psf.upfronthosting.co.za>
2009-01-20 23:28:45vinay.sajiplinkissue5013 messages
2009-01-20 23:28:44vinay.sajipcreate