syslog
— Unix syslog library routines¶
This module provides an interface to the Unix syslog
library routines. Refer to the Unix manual pages for a detailed description of the syslog
facility.
This module wraps the system syslog
family of routines. A pure Python library that can speak to a syslog server is available in the logging.handlers
module as SysLogHandler
.
The module defines the following functions:
-
syslog.
syslog
(message)¶ -
syslog.
syslog
(priority, message) Send the string message to the system logger.将字符串message发送到系统记录器。A trailing newline is added if necessary.如有必要,会添加一个尾随换行符。Each message is tagged with a priority composed of a facility and a level.每条消息都标记有一个优先级,该优先级由一个facility和一个level组成。The optional priority argument, which defaults to可选的priority参数(默认为LOG_INFO
, determines the message priority.LOG_INFO
)确定消息的优先级。If the facility is not encoded in priority using logical-or (如果未使用逻辑或(LOG_INFO | LOG_USER
), the value given in theopenlog()
call is used.LOG_INFO
|LOG_USER
)对设施进行priority编码,则使用openlog()
调用中给定的值。If如果在调用openlog()
has not been called prior to the call tosyslog()
,openlog()
will be called with no arguments.openlog()
之前没有调用syslog()
,那么将在不带参数的情况下调用openlog()
。Raises an auditing event
syslog.syslog
with argumentspriority
,message
.
-
syslog.
openlog
([ident[, logoption[, facility]]])¶ Logging options of subsequent
syslog()
calls can be set by callingopenlog()
.syslog()
will callopenlog()
with no arguments if the log is not currently open.The optional ident keyword argument is a string which is prepended to every message, and defaults to
sys.argv[0]
with leading path components stripped. The optional logoption keyword argument (default is 0) is a bit field – see below for possible values to combine. The optional facility keyword argument (default isLOG_USER
) sets the default facility for messages which do not have a facility explicitly encoded.Raises an auditing event
syslog.openlog
with argumentsident
,logoption
,facility
.Changed in version 3.2:版本3.2中更改: In previous versions, keyword arguments were not allowed, and ident was required. The default for ident was dependent on the system libraries, and often waspython
instead of the name of the Python program file.
-
syslog.
closelog
()¶ Reset the syslog module values and call the system library
closelog()
.This causes the module to behave as it does when initially imported. For example,
openlog()
will be called on the firstsyslog()
call (ifopenlog()
hasn’t already been called), and ident and otheropenlog()
parameters are reset to defaults.Raises an auditing event
syslog.closelog
with no arguments.
-
syslog.
setlogmask
(maskpri)¶ Set the priority mask to maskpri and return the previous mask value. Calls to
syslog()
with a priority level not set in maskpri are ignored. The default is to log all priorities. The functionLOG_MASK(pri)
calculates the mask for the individual priority pri. The functionLOG_UPTO(pri)
calculates the mask for all priorities up to and including pri.Raises an auditing event
syslog.setlogmask
with argumentmaskpri
.
The module defines the following constants:
- Priority levels (high to low):
LOG_EMERG
,LOG_ALERT
,LOG_CRIT
,LOG_ERR
,LOG_WARNING
,LOG_NOTICE
,LOG_INFO
,LOG_DEBUG
.- Facilities:
LOG_KERN
,LOG_USER
,LOG_MAIL
,LOG_DAEMON
,LOG_AUTH
,LOG_LPR
,LOG_NEWS
,LOG_UUCP
,LOG_CRON
,LOG_SYSLOG
,LOG_LOCAL0
toLOG_LOCAL7
, and, if defined in<syslog.h>
,LOG_AUTHPRIV
.- Log options:
LOG_PID
,LOG_CONS
,LOG_NDELAY
, and, if defined in<syslog.h>
,LOG_ODELAY
,LOG_NOWAIT
, andLOG_PERROR
.
Examples¶
Simple example¶
A simple set of examples:
import syslog
syslog.syslog('Processing started')
if error:
syslog.syslog(syslog.LOG_ERR, 'Processing started')
An example of setting some log options, these would include the process ID in logged messages, and write the messages to the destination facility used for mail logging:
syslog.openlog(logoption=syslog.LOG_PID, facility=syslog.LOG_MAIL)
syslog.syslog('E-mail processing initiated...')