Issue 987166: TimedRotatingFileHandler problems - Python tracker (original) (raw)

Issue987166

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:05 admin set github: 40522
2004-07-08 10:20:45 amaury.forgeotdarc create