This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Small typo in logging documentation
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: larsbjonnes, rhettinger
Priority: normal Keywords:

Created on 2003-11-04 02:47 by larsbjonnes, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg18891 - (view) Author: Lars Bjønnes (larsbjonnes) Date: 2003-11-04 02:47
From logging/handlers.py, in class RotatingFileHandler(logging.FileHandler)

def emit(self, record):
...
        Output the record to the file, catering for rollover as described
        in setRollover().
....

There is no method named setRollover() in the module, and I believe the 
author really meant doRollover().

(Just nitpicking; I was just browsing through the code when I noticed it.)
msg18892 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-11-08 11:41
Logged In: YES 
user_id=80475

Fixed.
See Lib/logging/handlers.py 1.8 and 1.7.8.1
History
Date User Action Args
2022-04-11 14:56:00adminsetgithub: 39500
2003-11-04 02:47:25larsbjonnescreate