]> granicus.if.org Git - python/commitdiff
Added updates with respect to recent changes to TimedRotatingFileHandler.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Wed, 2 Apr 2008 21:17:25 +0000 (21:17 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Wed, 2 Apr 2008 21:17:25 +0000 (21:17 +0000)
Doc/library/logging.rst

index 44979f86b6acb28a118333750dc7b0f594a600e5..775aef41a1bcd19016a053a42d52c6d349a30ecc 100644 (file)
@@ -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()