Home
last modified time | relevance | path

Searched refs:TimedRotatingFileHandler (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Misc/NEWS.d/
D2.6a2.rst267 logging.handlers: TimedRotatingFileHandler now accounts for daylight savings
277 logging.handlers: TimedRotatingFileHandler now calculates rollovers
287 logging.handlers: TimedRotatingFileHandler now uses improved logic for
D2.6b1.rst508 TimedRotatingFileHandler now takes an optional keyword argument "utc" to use
518 TimedRotatingFileHandler was using the wrong path when deleting old log
D2.7b1.rst460 ``TimedRotatingFileHandler`` by using the modification time of an existing
D2.7a1.rst2563 Fixed bug in next rollover time computation in TimedRotatingFileHandler.
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst218 :class:`RotatingFileHandler` and :class:`TimedRotatingFileHandler`. You should
241 and :class:`TimedRotatingFileHandler` deletes old log files (based on the
246 need to be used in a subclass of :class:`TimedRotatingFileHandler` which
247 overrides the :meth:`~TimedRotatingFileHandler.getFilesToDelete` method to
294 :class:`TimedRotatingFileHandler`. If either the namer or rotator callable
357 TimedRotatingFileHandler chapter
360 The :class:`TimedRotatingFileHandler` class, located in the
365 .. class:: TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, d…
367 Returns a new instance of the :class:`TimedRotatingFileHandler` class. The
/external/python/cpython3/Lib/test/
Dtest_logging.py618 (logging.handlers.TimedRotatingFileHandler, (pfn, 'h')),
5307 fh = logging.handlers.TimedRotatingFileHandler(
5316 fh = logging.handlers.TimedRotatingFileHandler(
5359 assertRaises(ValueError, logging.handlers.TimedRotatingFileHandler,
5361 assertRaises(ValueError, logging.handlers.TimedRotatingFileHandler,
5363 assertRaises(ValueError, logging.handlers.TimedRotatingFileHandler,
5369 rh = logging.handlers.TimedRotatingFileHandler(
5390 rh = logging.handlers.TimedRotatingFileHandler(
5436 rotator = logging.handlers.TimedRotatingFileHandler(p, when='s',
5483 rh = logging.handlers.TimedRotatingFileHandler(
/external/python/cpython2/Doc/library/
Dlogging.handlers.rst215 TimedRotatingFileHandler chapter
218 The :class:`TimedRotatingFileHandler` class, located in the
223 .. class:: TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, d…
225 Returns a new instance of the :class:`TimedRotatingFileHandler` class. The
/external/python/cpython2/Lib/logging/
Dhandlers.py162 class TimedRotatingFileHandler(BaseRotatingHandler): class
/external/python/cpython3/Lib/logging/
Dhandlers.py202 class TimedRotatingFileHandler(BaseRotatingHandler): class
/external/python/cpython2/Doc/howto/
Dlogging.rst879 :class:`~handlers.TimedRotatingFileHandler`.
884 #. :class:`~handlers.TimedRotatingFileHandler` instances send messages to
/external/python/cpython3/Doc/howto/
Dlogging.rst931 :class:`~handlers.TimedRotatingFileHandler`.
936 #. :class:`~handlers.TimedRotatingFileHandler` instances send messages to
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2075 and :class:`TimedRotatingFileHandler` now
2080 :class:`TimedRotatingFileHandler` also has a *utc* constructor
D2.4.rst1181 convenience method, as well as a :class:`TimedRotatingFileHandler` class that
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2079 and :class:`TimedRotatingFileHandler` now
2084 :class:`TimedRotatingFileHandler` also has a *utc* constructor
D2.4.rst1181 convenience method, as well as a :class:`TimedRotatingFileHandler` class that
D3.4.rst1075 The :class:`~logging.handlers.TimedRotatingFileHandler` has a new *atTime*
/external/python/cpython3/Misc/
DHISTORY5096 TimedRotatingFileHandler to rotate.
14639 TimedRotatingFileHandler.