Home
last modified time | relevance | path

Searched refs:NOTSET (Results 1 – 23 of 23) sorted by relevance

/external/python/cpython2/Lib/logging/
D__init__.py130 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
Dconfig.py267 logger.level = logging.NOTSET
637 logger.level = logging.NOTSET
/external/python/cpython3/Lib/logging/
D__init__.py98 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
Dconfig.py178 logger.setLevel(logging.NOTSET)
/external/autotest/client/bin/
Dfs_sync.py247 logging.root.setLevel(logging.NOTSET)
/external/python/cpython2/Doc/library/
Dlogging.rst102 :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 …]
Dlogging.config.rst620 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
Dmultiprocessing.rst2181 When first created the logger has level :data:`logging.NOTSET` and no
/external/python/cpython3/Doc/library/
Dlogging.config.rst672 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
Dlogging.rst101 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 …]
Dmultiprocessing.rst2621 When first created the logger has level :data:`logging.NOTSET` and no
/external/python/cpython2/Lib/multiprocessing/
Dutil.py56 NOTSET = 0 variable
/external/python/cpython3/Lib/multiprocessing/
Dutil.py32 NOTSET = 0 variable
/external/fonttools/Lib/fontTools/misc/
DloggingTools.py218 logger.level = logging.NOTSET
/external/python/cpython3/Lib/test/
Dtest_logging.py328 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.py4346 logger.setLevel(logging.NOTSET)
/external/sonivox/jet_tools/JetCreator/
Dmidifile.py189 midi_file_logger.setLevel(logging.NOTSET)
1487 root_logger.setLevel(logging.NOTSET)
/external/autotest/client/common_lib/hosts/
Drepair_unittest.py270 logging.disable(logging.NOTSET)
/external/python/cpython2/Lib/test/
Dtest_logging.py404 self.root_logger.handlers[0].setLevel(logging.NOTSET)
Dtest_multiprocessing.py2291 logger.setLevel(logging.NOTSET)
/external/python/cpython2/Doc/howto/
Dlogging.rst814 | ``NOTSET`` | 0 |
/external/python/cpython3/Doc/howto/
Dlogging.rst867 | ``NOTSET`` | 0 |
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst1566 fix a bug to allow basicConfig to accept NOTSET as a level.