Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/logging/
D__init__.py130 NOTSET = 0 variable
138 NOTSET : 'NOTSET',
145 'NOTSET' : NOTSET,
665 def __init__(self, level=NOTSET):
1127 def __init__(self, name, level=NOTSET):
1358 return NOTSET
Dconfig.py267 logger.level = logging.NOTSET
637 logger.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.rst2164 When first created the logger has level :data:`logging.NOTSET` and no
/external/python/cpython2/Lib/multiprocessing/
Dutil.py56 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.py234 logging.disable(logging.NOTSET)
/external/python/cpython2/Lib/test/
Dtest_logging.py404 self.root_logger.handlers[0].setLevel(logging.NOTSET)
Dtest_multiprocessing.py2160 logger.setLevel(logging.NOTSET)
/external/python/cpython2/Doc/howto/
Dlogging.rst814 | ``NOTSET`` | 0 |
/external/python/cpython2/Misc/
DNEWS10959 - Issue #1021: fix a bug to allow basicConfig to accept NOTSET as a