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: TimedRotatingFileHandler problems
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: vinay.sajip Nosy List: amaury.forgeotdarc, vinay.sajip
Priority: normal Keywords:

Created on 2004-07-08 10:20 by amaury.forgeotdarc, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg21443 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2004-07-08 10:20
2 problems in the new TimedRotatingFileHandler class:
- "print" statements that where used for debugging were
not removed.
- the code that "find the oldest log file and delete
it" assumes that glob.glob returns files in
alphabetical order. This is not true for all
filesystems (FAT and Novell at least don't sort their
directories), so the file deleted may be a recent one...
msg21444 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2004-07-12 09:22
Logged In: YES 
user_id=308438

Fixes checked into CVS.
History
Date User Action Args
2022-04-11 14:56:05adminsetgithub: 40522
2004-07-08 10:20:45amaury.forgeotdarccreate