Kaydet (Commit) 89a01cd4 authored tarafından Vinay Sajip's avatar Vinay Sajip

Added updates with respect to recent changes to TimedRotatingFileHandler.

üst b7edfc4e
...@@ -1670,10 +1670,11 @@ timed intervals. ...@@ -1670,10 +1670,11 @@ timed intervals.
The system will save old log files by appending extensions to the filename. The system will save old log files by appending extensions to the filename.
The extensions are date-and-time based, using the strftime format The extensions are date-and-time based, using the strftime format
``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the rollover ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the
interval. If *backupCount* is nonzero, at most *backupCount* files will be rollover interval. If *backupCount* is nonzero, at most *backupCount* files
kept, and if more would be created when rollover occurs, the oldest one is will be kept, and if more would be created when rollover occurs, the oldest
deleted. one is deleted. The deletion logic uses the interval to determine which
files to delete, so changing the interval may leave old files lying around.
.. method:: TimedRotatingFileHandler.doRollover() .. method:: TimedRotatingFileHandler.doRollover()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment