Home
last modified time | relevance | path

Searched refs:NullHandler (Results 1 – 20 of 20) sorted by relevance

/external/python/google-api-python-client/googleapiclient/
D__init__.py21 from logging import NullHandler
23 class NullHandler(logging.Handler): class
27 logging.getLogger(__name__).addHandler(NullHandler())
/external/curl/tests/python_dependencies/impacket/
D__init__.py13 from logging import NullHandler
15 class NullHandler(logging.Handler): class
25 LOG.addHandler(NullHandler())
/external/python/pyasn1/pyasn1/
Ddebug.py56 NullHandler = logging.NullHandler variable
60 class NullHandler(logging.Handler): class
75 handler=NullHandler()
/external/scapy/scapy/
Derror.py52 from logging import NullHandler
56 class NullHandler(Handler): class
60 log_scapy.addHandler(NullHandler())
/external/chromium-trace/catapult/devil/devil/
D__init__.py7 logging.getLogger('devil').addHandler(logging.NullHandler())
/external/chromium-trace/catapult/devil/devil/utils/
Drun_tests_helper.py29 handler=None if add_handler else logging.NullHandler())
/external/python/cpython2/Doc/library/
Dlogging.handlers.rst28 :class:`NullHandler`) are actually defined in the :mod:`logging` module itself,
96 NullHandler chapter
101 The :class:`NullHandler` class, located in the core :mod:`logging` package,
105 .. class:: NullHandler()
107 Returns a new instance of the :class:`NullHandler` class.
124 :class:`NullHandler`.
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
DResourceFileWriter.cpp146 static Error processString(StringRef Str, NullHandlingMethod NullHandler, in processString() argument
180 auto AddRes = [&Result, NullHandler, IsLongString](UTF16 Char) -> Error { in processString()
182 if (NullHandler == NullHandlingMethod::UserResource) { in processString()
341 switch (NullHandler) { in processString()
/external/python/google-api-python-client/docs/epy/
Dapi-objects.txt99 googleapiclient.NullHandler googleapiclient.NullHandler-class.html
100 googleapiclient.NullHandler.emit googleapiclient.NullHandler-class.html#emit
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst27 :class:`NullHandler`) are actually defined in the :mod:`logging` module itself,
116 NullHandler chapter
121 The :class:`NullHandler` class, located in the core :mod:`logging` package,
125 .. class:: NullHandler()
127 Returns a new instance of the :class:`NullHandler` class.
144 :class:`NullHandler`.
/external/python/cpython2/Lib/logging/
D__init__.py1696 class NullHandler(Handler): class
1734 logger.addHandler(NullHandler())
/external/python/cpython2/Doc/howto/
Dlogging.rst768 :class:`~logging.NullHandler` (since Python 2.7). An instance of this handler
776 logging.getLogger('foo').addHandler(logging.NullHandler())
783 than* :class:`~logging.NullHandler` *to your library's loggers*. This is
913 #. :class:`NullHandler` instances do nothing with error messages. They are used
920 The :class:`NullHandler` class.
922 The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler`
Dlogging-cookbook.rst732 'class':'django.utils.log.NullHandler',
1272 logger.addHandler(logging.NullHandler())
/external/python/cpython3/Doc/howto/
Dlogging.rst812 :class:`~logging.NullHandler` (since Python 3.1). An instance of this handler
820 logging.getLogger('foo').addHandler(logging.NullHandler())
827 than* :class:`~logging.NullHandler` *to your library's loggers*. This is
960 #. :class:`NullHandler` instances do nothing with error messages. They are used
967 The :class:`NullHandler` class.
972 The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler`
Dlogging-cookbook.rst1224 could also add the filter to a :class:`~logging.NullHandler` attached to their
1360 'class':'django.utils.log.NullHandler',
2281 logger.addHandler(logging.NullHandler())
/external/python/cpython3/Lib/logging/
D__init__.py2059 class NullHandler(Handler): class
2097 logger.addHandler(NullHandler())
/external/python/cpython3/Doc/whatsnew/
D3.1.rst307 * The :mod:`logging` module now implements a simple :class:`logging.NullHandler`
312 >>> h = logging.NullHandler()
/external/python/cpython3/Lib/test/
Dtest_logging.py2122 self.assertIsInstance(logger.handlers[0], logging.NullHandler)
3655 class RecordingHandler(logging.NullHandler):
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst4559 This change includes a NullHandler which does nothing; it will be of use to
/external/python/cpython3/Misc/
DHISTORY15843 captureWarnings(). This change includes a NullHandler which does nothing;