Home
last modified time | relevance | path

Searched refs:RotatingFileHandler (Results 1 – 15 of 15) sorted by relevance

/external/autotest/site_utils/stats/
Dlog_daemon_common.py37 handler = handlers.RotatingFileHandler(
/external/autotest/site_utils/
Drpc_logserver.py112 handler = logging.handlers.RotatingFileHandler(
Dgs_offloader.py1233 handler = logging.handlers.RotatingFileHandler(
/external/chromium-trace/catapult/devil/devil/android/tools/
Ddevice_monitor.py210 handler = logging.handlers.RotatingFileHandler(
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst218 :class:`RotatingFileHandler` and :class:`TimedRotatingFileHandler`. You should
239 For example, :class:`RotatingFileHandler` expects to have a set of log files
293 the same callables for instances of :class:`RotatingFileHandler` and
307 RotatingFileHandler chapter
310 The :class:`RotatingFileHandler` class, located in the :mod:`logging.handlers`
314 .. class:: RotatingFileHandler(filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=…
316 Returns a new instance of the :class:`RotatingFileHandler` class. The specified
Dlogging.config.rst316 class : logging.handlers.RotatingFileHandler
325 :class:`logging.handlers.RotatingFileHandler` with the keyword arguments
/external/python/cpython3/Lib/test/
Dtest_logging.py671 (logging.handlers.RotatingFileHandler, (pfn, 'a')),
6220 rh = logging.handlers.RotatingFileHandler(
6226 rh = logging.handlers.RotatingFileHandler(
6233 rh = logging.handlers.RotatingFileHandler(
6243 rh = logging.handlers.RotatingFileHandler(
6251 rh = logging.handlers.RotatingFileHandler(self.fn, encoding="utf-8", maxBytes=2)
6259 rh = logging.handlers.RotatingFileHandler(self.fn, encoding="utf-8")
6267 rh = logging.handlers.RotatingFileHandler(
6293 rh = logging.handlers.RotatingFileHandler(
6310 class HandlerWithNamerAndRotator(logging.handlers.RotatingFileHandler):
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.13.0b4.rst189 :class:`logging.handlers.RotatingFileHandler`. Patch by Craig Robson.
D3.13.0rc2.rst252 :class:`logging.handlers.RotatingFileHandler` no longer rolls over empty log
/external/python/cpython3/Lib/logging/
Dhandlers.py125 class RotatingFileHandler(BaseRotatingHandler): class
/external/python/cpython3/Doc/howto/
Dlogging.rst951 directly. Instead, use :class:`~handlers.RotatingFileHandler` or
954 #. :class:`~handlers.RotatingFileHandler` instances send messages to disk
Dlogging-cookbook.rst1309 h = logging.handlers.RotatingFileHandler('mptest.log', 'a', 300, 10)
1548 logging package provides a :class:`RotatingFileHandler`::
1561 handler = logging.handlers.RotatingFileHandler(
2178 rh = logging.handlers.RotatingFileHandler('rotated.log', maxBytes=128, backupCount=5)
/external/python/cpython3/Doc/whatsnew/
D2.4.rst1184 :class:`RotatingFileHandler`, which rotated logs once the file exceeded a
D2.7.rst487 'class': 'logging.handlers.RotatingFileHandler',
D2.6.rst2073 and its subclasses :class:`WatchedFileHandler`, :class:`RotatingFileHandler`,