]> granicus.if.org Git - python/commitdiff
whatsnew: logging TimedRotatingFileHandler atTime parameter.
authorR David Murray <rdmurray@bitdance.com>
Sat, 4 Jan 2014 23:55:01 +0000 (18:55 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sat, 4 Jan 2014 23:55:01 +0000 (18:55 -0500)
Doc/whatsnew/3.4.rst
Misc/NEWS

index f4e809e66b52b4a633ef863c8530e1e8c773e436..044d830b79706822d9da927b60bc6d6dc5a4e56b 100644 (file)
@@ -730,6 +730,14 @@ metaclasses (Contributed by Ethan Furman in :issue:`18929` and
 :issue:`19030`)
 
 
+logging
+-------
+
+The :class:`~logging.handlers.TimedRotatingFileHandler` has a new *atTime*
+parameter that can be used to specify the time of day when rollover should
+happen.  (Contributed by Ronald Oussoren in :issue:`9556`.)
+
+
 .. _whatsnew-marshal-3:
 
 marshal
index 497cc5604c1ce832811582e77d21386195d1599d..aca2b5ad3038c2a3c877093865806a12fa82ea2d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2226,8 +2226,8 @@ Library
 - Issue #16658: add missing return to HTTPConnection.send()
   Patch by Jeff Knupp.
 
-- Issue #9556: Allowed specifying a time-of-day for a TimedRotatingFileHandler
-  to rotate.
+- Issue #9556: the logging package now allows specifying a time-of-day for a
+  TimedRotatingFileHandler to rotate.
 
 - Issue #14971: unittest test discovery no longer gets confused when a function
   has a different __name__ than its name in the TestCase class dictionary.