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__.py96 NOTSET = 0 variable
104 NOTSET: 'NOTSET',
114 'NOTSET': NOTSET,
813 def __init__(self, level=NOTSET):
1145 def __init__(self, level=NOTSET):
1341 def __init__(self, name, level=NOTSET):
1617 return NOTSET
Dconfig.py176 logger.level = logging.NOTSET
/external/autotest/venv/skylab_suite/
Dsuite_runner.py279 logging.disable(logging.NOTSET)
287 with disable_logging(logging.INFO if no_logging else logging.NOTSET):
/external/fonttools/Lib/fontTools/misc/
DloggingTools.py221 logger.level = logging.NOTSET
578 def __init__(self, level=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.rst667 level=NOTSET
671 ``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be
692 except that if a non-root logger's level is specified as ``NOTSET``, the system
706 level=NOTSET
712 loggers, and ``NOTSET`` is taken to mean 'log everything'.
770 level=NOTSET
777 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
361 | ``NOTSET`` | 0 |
377 .. method:: Handler.__init__(level=NOTSET)
404 level is set to :const:`NOTSET` (which causes all messages to be
[all …]
Dmultiprocessing.rst2565 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/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.py243 logging.disable(logging.NOTSET)
/external/python/cpython3/Lib/test/
Dtest_logging.py332 self.assertEqual(logging.getLevelName(logging.NOTSET), 'NOTSET')
333 self.assertEqual(logging.getLevelName('NOTSET'), logging.NOTSET)
494 self.root_logger.handlers[0].setLevel(logging.NOTSET)
4356 logger2.setLevel(logging.NOTSET)
D_test_multiprocessing.py3742 logger.setLevel(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.rst858 | ``NOTSET`` | 0 |
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst1566 fix a bug to allow basicConfig to accept NOTSET as a level.