mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
Added updates with respect to recent changes to TimedRotatingFileHandler.
This commit is contained in:
parent
b7edfc4e17
commit
89a01cd44b
1 changed files with 5 additions and 4 deletions
|
|
@ -1670,10 +1670,11 @@ timed intervals.
|
|||
|
||||
The system will save old log files by appending extensions to the filename.
|
||||
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
|
||||
interval. If *backupCount* is nonzero, at most *backupCount* files will be
|
||||
kept, and if more would be created when rollover occurs, the oldest one is
|
||||
deleted.
|
||||
``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the
|
||||
rollover interval. If *backupCount* is nonzero, at most *backupCount* files
|
||||
will be kept, and if more would be created when rollover occurs, the oldest
|
||||
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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue