Searched refs:flushLevel (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/logging/ |
D | handlers.py | 1326 def __init__(self, capacity, flushLevel=logging.ERROR, target=None, argument 1341 self.flushLevel = flushLevel 1351 (record.levelno >= self.flushLevel)
|
/third_party/python/Doc/library/ |
D | logging.handlers.rst | 906 .. class:: MemoryHandler(capacity, flushLevel=ERROR, target=None, flushOnClose=True) 910 If *flushLevel* is not specified, :const:`ERROR` is used. If no *target* is 941 Checks for buffer full or a record at the *flushLevel* or higher.
|
/third_party/python/Doc/howto/ |
D | logging-cookbook.rst | 2346 handler = MemoryHandler(capacity, flushLevel=flush_level, target=target_handler)
|