Searched refs:flushLevel (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/logging/ |
D | handlers.py | 1175 def __init__(self, capacity, flushLevel=logging.ERROR, target=None): argument 1184 self.flushLevel = flushLevel 1192 (record.levelno >= self.flushLevel)
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 1244 def __init__(self, capacity, flushLevel=logging.ERROR, target=None, argument 1259 self.flushLevel = flushLevel 1269 (record.levelno >= self.flushLevel)
|
/external/python/cpython2/Doc/library/ |
D | logging.handlers.rst | 690 .. class:: MemoryHandler(capacity, flushLevel=ERROR, target=None) 693 initialized with a buffer size of *capacity*. If *flushLevel* is not specified, 718 Checks for buffer full or a record at the *flushLevel* or higher.
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 841 .. class:: MemoryHandler(capacity, flushLevel=ERROR, target=None, flushOnClose=True) 844 initialized with a buffer size of *capacity*. If *flushLevel* is not specified, 875 Checks for buffer full or a record at the *flushLevel* or higher.
|
/external/python/cpython2/Doc/howto/ |
D | logging-cookbook.rst | 1281 handler = MemoryHandler(capacity, flushLevel=flush_level, target=target_handler)
|
/external/python/cpython3/Doc/howto/ |
D | logging-cookbook.rst | 2268 handler = MemoryHandler(capacity, flushLevel=flush_level, target=target_handler)
|