Home
last modified time | relevance | path

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

/external/python/google-api-python-client/googleapiclient/
D__init__.py21 from logging import NullHandler
24 class NullHandler(logging.Handler): class
29 logging.getLogger(__name__).addHandler(NullHandler())
/external/python/pyasn1/pyasn1/
Ddebug.py59 NullHandler = logging.NullHandler variable
63 class NullHandler(logging.Handler): class
78 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.py26 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/llvm-project/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.txt120 googleapiclient.NullHandler googleapiclient.NullHandler-class.html
121 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,
123 NullHandler chapter
128 The :class:`NullHandler` class, located in the core :mod:`logging` package,
132 .. class:: NullHandler()
134 Returns a new instance of the :class:`NullHandler` class.
151 :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.rst821 :class:`~logging.NullHandler` (since Python 3.1). An instance of this handler
829 logging.getLogger('foo').addHandler(logging.NullHandler())
836 than* :class:`~logging.NullHandler` *to your library's loggers*. This is
969 #. :class:`NullHandler` instances do nothing with error messages. They are used
976 The :class:`NullHandler` class.
981 The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler`
Dlogging-cookbook.rst1258 could also add the filter to a :class:`~logging.NullHandler` attached to their
1394 'class':'django.utils.log.NullHandler',
2315 logger.addHandler(logging.NullHandler())
/external/python/cpython3/Lib/logging/
D__init__.py2150 class NullHandler(Handler): class
2191 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/guice/extensions/persist/lib/
Dognl-2.6.7.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/ASTAdd.class ASTAdd ...
Dxwork-2.0.4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/opensymphony/ com/ ...
/external/guice/extensions/struts2/lib/
Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/ ...
Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0. ...
/external/python/cpython3/Lib/test/
Dtest_logging.py2183 self.assertIsInstance(logger.handlers[0], logging.NullHandler)
4083 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;