/external/python/google-api-python-client/googleapiclient/ |
D | __init__.py | 21 from logging import NullHandler 23 class NullHandler(logging.Handler): class 27 logging.getLogger(__name__).addHandler(NullHandler())
|
/external/curl/tests/python_dependencies/impacket/ |
D | __init__.py | 13 from logging import NullHandler 15 class NullHandler(logging.Handler): class 25 LOG.addHandler(NullHandler())
|
/external/python/pyasn1/pyasn1/ |
D | debug.py | 56 NullHandler = logging.NullHandler variable 60 class NullHandler(logging.Handler): class 75 handler=NullHandler()
|
/external/scapy/scapy/ |
D | error.py | 52 from logging import NullHandler 56 class NullHandler(Handler): class 60 log_scapy.addHandler(NullHandler())
|
/external/chromium-trace/catapult/devil/devil/ |
D | __init__.py | 7 logging.getLogger('devil').addHandler(logging.NullHandler())
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | run_tests_helper.py | 29 handler=None if add_handler else logging.NullHandler())
|
/external/python/cpython2/Doc/library/ |
D | logging.handlers.rst | 28 :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/ |
D | ResourceFileWriter.cpp | 146 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/ |
D | api-objects.txt | 99 googleapiclient.NullHandler googleapiclient.NullHandler-class.html 100 googleapiclient.NullHandler.emit googleapiclient.NullHandler-class.html#emit
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 27 :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__.py | 1696 class NullHandler(Handler): class 1734 logger.addHandler(NullHandler())
|
/external/python/cpython2/Doc/howto/ |
D | logging.rst | 768 :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`
|
D | logging-cookbook.rst | 732 'class':'django.utils.log.NullHandler', 1272 logger.addHandler(logging.NullHandler())
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 812 :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`
|
D | logging-cookbook.rst | 1224 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__.py | 2059 class NullHandler(Handler): class 2097 logger.addHandler(NullHandler())
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.1.rst | 307 * The :mod:`logging` module now implements a simple :class:`logging.NullHandler` 312 >>> h = logging.NullHandler()
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 2122 self.assertIsInstance(logger.handlers[0], logging.NullHandler) 3655 class RecordingHandler(logging.NullHandler):
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 4559 This change includes a NullHandler which does nothing; it will be of use to
|
/external/python/cpython3/Misc/ |
D | HISTORY | 15843 captureWarnings(). This change includes a NullHandler which does nothing;
|