diff options
author | Georg Brandl <georg@python.org> | 2008-03-02 14:15:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-02 14:15:04 (GMT) |
commit | e6dab2a07740ffdeef570919c6b98004df29408e (patch) | |
tree | b01b8b30c6c23a97fdf717bec9cc319f1a9d4d8c | |
parent | 72780a4b0c4cf31e7e53cd4fd5d107b2e17a9f35 (diff) | |
download | cpython-e6dab2a07740ffdeef570919c6b98004df29408e.zip cpython-e6dab2a07740ffdeef570919c6b98004df29408e.tar.gz cpython-e6dab2a07740ffdeef570919c6b98004df29408e.tar.bz2 |
Fix factual error.
-rw-r--r-- | Doc/library/logging.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index dc2555f..0b2181c 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -1667,11 +1667,12 @@ timed intervals. | ``'midnight'`` | Roll over at midnight | +----------------+-----------------------+ - If *backupCount* is non-zero, 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. At most *backupCount* files will be kept, and if more - would be created when rollover occurs, the oldest one is deleted. + 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. .. method:: TimedRotatingFileHandler.doRollover() |