I am using the RotatingFileHandler logger with Python 2.5 on Windows and I am getting an error on the rollover. When the log file gets close to the size where it needs to rollover, I start getting the following error for every log message. Does anyone have a solution to this problem?
Traceback (most recent call last): File "C:\Python25\Lib\logging\handlers.py", line 73, in emit if self.shouldRollover(record): File "C:\Python25\Lib\logging\handlers.py", line 147, in shouldRollover self.stream.seek(0, 2) #due to non-posix-compliant Windows feature ValueError: I/O operation on closed file My configuration file is setup as such: [handler_file_detailed] class:handlers.RotatingFileHandler level:DEBUG formatter:detailed mode=a maxsize=4000000 backcount=5 args:('python.log','a',4000000,5) Thanks, Todd
-- http://mail.python.org/mailman/listinfo/python-list