[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2013-04-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset eead4be1bdd9 by Vinay Sajip in branch 'default': Closed #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler to rotate. http://hg.python.org/cpython/rev/eead4be1bdd9 -- nosy: +python-dev resolution: -> fixed stage: patch

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2013-03-07 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2012-10-24 Thread Vinay Sajip
Vinay Sajip added the comment: Thanks for the comments on Rietveld - patch updated. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2012-10-24 Thread Vinay Sajip
Changes by Vinay Sajip : Added file: http://bugs.python.org/file27693/b178bbafd564.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2012-10-23 Thread Vinay Sajip
Changes by Vinay Sajip : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2012-10-23 Thread Vinay Sajip
Changes by Vinay Sajip : -- keywords: +patch Added file: http://bugs.python.org/file27687/7b2c68a00118.diff ___ Python tracker ___ ___

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2012-10-23 Thread Vinay Sajip
Vinay Sajip added the comment: Thanks for the patch. I've added the weekly test and the documentation update, can you take a look? -- hgrepos: +156 ___ Python tracker ___ ___

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2012-10-23 Thread Ronald Oussoren
Ronald Oussoren added the comment: An 'atTime' argument would work. I'm currently using a subclass of BaseRotatingHandler that implements just the 'MIDNIGHT' option of TimedRotatingFileHandler with a rotation hour argument. The attached patch is a first attempt at implementing the 'atTime' op

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-22 Thread Vinay Sajip
Vinay Sajip added the comment: One way of implementing this is to use an additional optional "atTime" parameter which is a datetime.time instance, defaulting to None; a specified value would only be used if a 'when' value of 'D' or 'MIDNIGHT' were specified. In that case, computeRollover woul

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-10 Thread Éric Araujo
Éric Araujo added the comment: Adding the logging maintainer to nosy. (BTW Vinay, Misc/maintainers.rst says your roundup name is “vsajip”) -- nosy: +merwok, vinay.sajip ___ Python tracker _

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-10 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- type: behavior -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9556] Specifying the time a TimedRotatingFileHandler rotates

2010-08-10 Thread Ronald Oussoren
New submission from Ronald Oussoren : The logging module contains a TimedRotatingFileHandler that automaticly rotates the logfile after a specified interval. This class misses an important feature: it is not possible to specify at what time the file should be rotated, unless that time is midni