Home
last modified time | relevance | path

Searched refs:SysLogHandler (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/test/
Dtest_pkgutil.py202 ('logging.handlers:SysLogHandler', logging.handlers.SysLogHandler),
203 ('logging.handlers.SysLogHandler', logging.handlers.SysLogHandler),
205 logging.handlers.SysLogHandler.LOG_ALERT),
207 logging.handlers.SysLogHandler.LOG_ALERT),
Dtest_logging.py584 h = logging.handlers.SysLogHandler(sockname)
1902 hcls = logging.handlers.SysLogHandler
/third_party/python/Doc/library/
Dlogging.handlers.rst602 SysLogHandler chapter
605 The :class:`SysLogHandler` class, located in the :mod:`logging.handlers` module,
609 .. class:: SysLogHandler(address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER, socktype=socket…
611 Returns a new instance of the :class:`SysLogHandler` class intended to
624 :class:`SysLogHandler` may appear not to work. In that case, check what
659 behaviour) but can be set to ``False`` on a ``SysLogHandler`` instance
667 a ``SysLogHandler`` instance in order for that instance to prepend
677 The symbolic ``LOG_`` values are defined in :class:`SysLogHandler` and
Dsyslog.rst16 :mod:`logging.handlers` module as :class:`SysLogHandler`.
Dlogging.config.rst787 class=handlers.SysLogHandler
790 args=(('localhost', handlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER)
/third_party/python/Lib/logging/
Dconfig.py739 elif issubclass(klass, logging.handlers.SysLogHandler) and\
Dhandlers.py734 class SysLogHandler(logging.Handler): class
/third_party/python/Misc/NEWS.d/
D3.6.2rc1.rst351 Fix the problem that logging.handlers.SysLogHandler cannot handle IPv6
D3.5.4rc1.rst440 Fix the problem that logging.handlers.SysLogHandler cannot handle IPv6
D3.5.0a1.rst1602 Brought excluded code into the scope of a try block in SysLogHandler.emit().
D3.7.0a1.rst2566 Fix the problem that logging.handlers.SysLogHandler cannot handle IPv6
/third_party/python/Doc/howto/
Dlogging-cookbook.rst1708 Inserting a BOM into messages sent to a SysLogHandler
1718 :class:`~logging.handlers.SysLogHandler` to insert a BOM into the message, but
1730 :class:`~logging.handlers.SysLogHandler` instance, with a format string
1747 ``SysLogHandler``. If you follow the above rules, you should be able to produce
Dlogging.rst948 #. :class:`~handlers.SysLogHandler` instances send messages to a Unix
/third_party/python/Doc/whatsnew/
D3.3.rst1504 A class level attribute :attr:`~logging.handlers.SysLogHandler.append_nul` has
1505 been added to :class:`~logging.handlers.SysLogHandler` to allow control of the
D2.7.rst492 'syslog': {'class': 'logging.handlers.SysLogHandler',
523 * The :class:`~logging.handlers.SysLogHandler` class now supports
/third_party/python/Misc/
DHISTORY1165 SysLogHandler.emit().
4967 - Issue #17981: logging's SysLogHandler now closes the socket when it catches
5045 - Issue #17795: Reverted backwards-incompatible change in SysLogHandler with
7879 - Issue #14452: SysLogHandler no longer inserts a UTF-8 BOM into the message.
9522 - Issue #12168: SysLogHandler now allows NUL termination to be controlled using
14004 - Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424.
14017 - Issue #7086: Added TCP support to SysLogHandler, and tidied up some
22179 - Fix logging.handlers.SysLogHandler protocol when using UNIX domain sockets.