/usr/lib/python3/dist-packages/twisted/python
NameSizeModeActions
test/-0755rm
_pydoctortemplates/-0755rm
__pycache__/-0755rm
compat.py231940644editdlrm
components.py142950644editdlrm
constants.py5440644editdlrm
context.py40240644editdlrm
deprecate.py267750644editdlrm
failure.py266380644editdlrm
fakepwd.py61380644editdlrm
filepath.py588870644editdlrm
formmethod.py114600644editdlrm
htmlizer.py35410644editdlrm
lockfile.py77180644editdlrm
log.py224720644editdlrm
logfile.py100830644editdlrm
modules.py271410644editdlrm
monkey.py22270644editdlrm
procutils.py14190644editdlrm
randbytes.py39590644editdlrm
rebuild.py92680644editdlrm
reflect.py194770644editdlrm
release.py11920644editdlrm
roots.py74040644editdlrm
runtime.py62700644editdlrm
sendmsg.py34200644editdlrm
shortcut.py22530644editdlrm
syslog.py37300644editdlrm
systemd.py28340644editdlrm
text.py54820644editdlrm
threadable.py32970644editdlrm
threadpool.py98400644editdlrm
twisted-completion.zsh13710644editdlrm
url.py2440644editdlrm
urlpath.py90840644editdlrm
usage.py350100644editdlrm
util.py279310644editdlrm
versions.py3220644editdlrm
win32.py43170644editdlrm
zippath.py92370644editdlrm
zipstream.py97570644editdlrm
_appdirs.py7880644editdlrm
_inotify.py34550644editdlrm
_oldstyle.py25930644editdlrm
_release.py185480644editdlrm
_setup.py129530644editdlrm
_shellcomp.py248300644editdlrm
_textattributes.py90790644editdlrm
_tzhelper.py31920644editdlrm
_url.py2530644editdlrm
__init__.py6740644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/python/syslog.py (3730B)
# -*- test-case-name: twisted.python.test.test_syslog -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Classes and utility functions for integrating Twisted and syslog. You probably want to call L{startLogging}. """ syslog = __import__('syslog') from twisted.python import log from twisted.python._oldstyle import _oldStyle # These defaults come from the Python syslog docs. DEFAULT_OPTIONS = 0 DEFAULT_FACILITY = syslog.LOG_USER @_oldStyle class SyslogObserver: """ A log observer for logging to syslog. See L{twisted.python.log} for context. This logObserver will automatically use LOG_ALERT priority for logged failures (such as from C{log.err()}), but you can use any priority and facility by setting the 'C{syslogPriority}' and 'C{syslogFacility}' keys in the event dict. """ openlog = syslog.openlog syslog = syslog.syslog def __init__(self, prefix, options=DEFAULT_OPTIONS, facility=DEFAULT_FACILITY): """ @type prefix: C{str} @param prefix: The syslog prefix to use. @type options: C{int} @param options: A bitvector represented as an integer of the syslog options to use. @type facility: C{int} @param facility: An indication to the syslog daemon of what sort of program this is (essentially, an additional arbitrary metadata classification for messages sent to syslog by this observer). """ self.openlog(prefix, options, facility) def emit(self, eventDict): """ Send a message event to the I{syslog}. @param eventDict: The event to send. If it has no C{'message'} key, it will be ignored. Otherwise, if it has C{'syslogPriority'} and/or C{'syslogFacility'} keys, these will be used as the syslog priority and facility. If it has no C{'syslogPriority'} key but a true value for the C{'isError'} key, the B{LOG_ALERT} priority will be used; if it has a false value for C{'isError'}, B{LOG_INFO} will be used. If the C{'message'} key is multiline, each line will be sent to the syslog separately. """ # Figure out what the message-text is. text = log.textFromEventDict(eventDict) if text is None: return # Figure out what syslog parameters we might need to use. priority = syslog.LOG_INFO facility = 0 if eventDict['isError']: priority = syslog.LOG_ALERT if 'syslogPriority' in eventDict: priority = int(eventDict['syslogPriority']) if 'syslogFacility' in eventDict: facility = int(eventDict['syslogFacility']) # Break the message up into lines and send them. lines = text.split('\n') while lines[-1:] == ['']: lines.pop() firstLine = True for line in lines: if firstLine: firstLine = False else: line = '\t' + line self.syslog(priority | facility, '[%s] %s' % (eventDict['system'], line)) def startLogging(prefix='Twisted', options=DEFAULT_OPTIONS, facility=DEFAULT_FACILITY, setStdout=1): """ Send all Twisted logging output to syslog from now on. The prefix, options and facility arguments are passed to C{syslog.openlog()}, see the Python syslog documentation for details. For other parameters, see L{twisted.python.log.startLoggingWithObserver}. """ obs = SyslogObserver(prefix, options, facility) log.startLoggingWithObserver(obs.emit, setStdout=setStdout)