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 lowell87, mramahi77, neyro, vinay.sajip
Date 2009-03-17.11:09:31
SpamBayes Score 0.00012526358
Marked as misclassified No
Message-id <1237288174.25.0.50197671237.issue4749@psf.upfronthosting.co.za>
In-reply-to
Content
Neyro, your problem is caused by having two handlers (a FileHandler and 
a RotatingFileHandler) pointing to the same file. Because of this, 
rollover fails (the file is still open because there is a handle open 
to it from the FileHandler).

If you remove the FileHandler from the config file and re-run, things 
appear to work as expected.
History
Date User Action Args
2009-03-17 11:09:34vinay.sajipsetrecipients: + vinay.sajip, mramahi77, lowell87, neyro
2009-03-17 11:09:34vinay.sajipsetmessageid: <1237288174.25.0.50197671237.issue4749@psf.upfronthosting.co.za>
2009-03-17 11:09:32vinay.sajiplinkissue4749 messages
2009-03-17 11:09:31vinay.sajipcreate