/external/python/cpython2/Lib/logging/ |
D | __init__.py | 130 NOTSET = 0 variable 138 NOTSET : 'NOTSET', 145 'NOTSET' : NOTSET, 672 def __init__(self, level=NOTSET): 1134 def __init__(self, name, level=NOTSET): 1365 return NOTSET
|
D | config.py | 267 logger.level = logging.NOTSET 637 logger.level = logging.NOTSET
|
/external/python/cpython3/Lib/logging/ |
D | __init__.py | 98 NOTSET = 0 variable 106 NOTSET: 'NOTSET', 116 'NOTSET': NOTSET, 853 def __init__(self, level=NOTSET): 1196 def __init__(self, level=NOTSET): 1392 def __init__(self, name, level=NOTSET): 1675 return NOTSET
|
D | config.py | 178 logger.setLevel(logging.NOTSET)
|
/external/autotest/client/bin/ |
D | fs_sync.py | 247 logging.root.setLevel(logging.NOTSET)
|
/external/python/cpython2/Doc/library/ |
D | logging.rst | 102 :const:`NOTSET` (which causes all messages to be processed when the logger is 107 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with 108 a level other than NOTSET is found, or the root is reached. 110 If an ancestor is found with a level other than NOTSET, then that ancestor's 114 If the root is reached, and it has a level of NOTSET, then all messages will be 131 :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise, 133 :const:`NOTSET` is found, and that value is returned. The value returned is 314 | ``NOTSET`` | 0 | 329 .. method:: Handler.__init__(level=NOTSET) 356 to :const:`NOTSET` (which causes all messages to be processed). [all …]
|
D | logging.config.rst | 620 level=NOTSET 624 ``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be 645 except that if a non-root logger's level is specified as ``NOTSET``, the system 659 level=NOTSET 665 loggers, and ``NOTSET`` is taken to mean 'log everything'. 721 level=NOTSET 728 level=NOTSET
|
D | multiprocessing.rst | 2181 When first created the logger has level :data:`logging.NOTSET` and no
|
/external/python/cpython3/Doc/library/ |
D | logging.config.rst | 672 level=NOTSET 676 ``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be 697 except that if a non-root logger's level is specified as ``NOTSET``, the system 711 level=NOTSET 717 loggers, and ``NOTSET`` is taken to mean 'log everything'. 775 level=NOTSET 782 level=NOTSET
|
D | logging.rst | 101 When a logger is created, the level is set to :const:`NOTSET` (which causes 107 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with 108 a level other than NOTSET is found, or the root is reached. 110 If an ancestor is found with a level other than NOTSET, then that ancestor's 114 If the root is reached, and it has a level of NOTSET, then all messages will be 138 :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise, 140 :const:`NOTSET` is found, and that value is returned. The value returned is 380 | ``NOTSET`` | 0 | 396 .. method:: Handler.__init__(level=NOTSET) 423 level is set to :const:`NOTSET` (which causes all messages to be [all …]
|
D | multiprocessing.rst | 2621 When first created the logger has level :data:`logging.NOTSET` and no
|
/external/python/cpython2/Lib/multiprocessing/ |
D | util.py | 56 NOTSET = 0 variable
|
/external/python/cpython3/Lib/multiprocessing/ |
D | util.py | 32 NOTSET = 0 variable
|
/external/fonttools/Lib/fontTools/misc/ |
D | loggingTools.py | 218 logger.level = logging.NOTSET
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 328 self.assertEqual(logging.getLevelName(logging.NOTSET), 'NOTSET') 329 self.assertEqual(logging.getLevelName('NOTSET'), logging.NOTSET) 490 self.root_logger.handlers[0].setLevel(logging.NOTSET) 755 level = logging.NOTSET 4258 def __init__(self, name='MyLogger', level=logging.NOTSET): 4987 logger2.setLevel(logging.NOTSET)
|
D | _test_multiprocessing.py | 4346 logger.setLevel(logging.NOTSET)
|
/external/sonivox/jet_tools/JetCreator/ |
D | midifile.py | 189 midi_file_logger.setLevel(logging.NOTSET) 1487 root_logger.setLevel(logging.NOTSET)
|
/external/autotest/client/common_lib/hosts/ |
D | repair_unittest.py | 270 logging.disable(logging.NOTSET)
|
/external/python/cpython2/Lib/test/ |
D | test_logging.py | 404 self.root_logger.handlers[0].setLevel(logging.NOTSET)
|
D | test_multiprocessing.py | 2291 logger.setLevel(logging.NOTSET)
|
/external/python/cpython2/Doc/howto/ |
D | logging.rst | 814 | ``NOTSET`` | 0 |
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 867 | ``NOTSET`` | 0 |
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a1.rst | 1566 fix a bug to allow basicConfig to accept NOTSET as a level.
|