[Python-checkins] cpython (3.2): Issue #17376: Clarified documentation for TimedRotatingFileHandler weekday

vinay.sajip python-checkins at python.org
Sat Mar 9 00:27:40 CET 2013


http://hg.python.org/cpython/rev/83f07e3a53f4
changeset:   82550:83f07e3a53f4
branch:      3.2
parent:      82544:76be5efa0d86
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Fri Mar 08 23:24:30 2013 +0000
summary:
  Issue #17376: Clarified documentation for TimedRotatingFileHandler weekday rotation.

files:
  Doc/library/logging.handlers.rst |  6 +++++-
  1 files changed, 5 insertions(+), 1 deletions(-)


diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst
--- a/Doc/library/logging.handlers.rst
+++ b/Doc/library/logging.handlers.rst
@@ -236,11 +236,15 @@
    +----------------+-----------------------+
    | ``'D'``        | Days                  |
    +----------------+-----------------------+
-   | ``'W'``        | Week day (0=Monday)   |
+   | ``'W0'-'W6'``  | Weekday (0=Monday)    |
    +----------------+-----------------------+
    | ``'midnight'`` | Roll over at midnight |
    +----------------+-----------------------+
 
+   When using weekday-based rotation, specify 'W0' for Monday, 'W1' for
+   Tuesday, and so on up to 'W6' for Sunday. In this case, the value passed for
+   *interval* isn't used.
+
    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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list