summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-10-09 20:49:57 (GMT)
committerGuido van Rossum <guido@python.org>1995-10-09 20:49:57 (GMT)
commitfbe34faba983f6a444da2c93f732d4429a08fdfd (patch)
tree1f4d99641adc18d941adc53f136f72fc1039a864 /Doc
parent0447a32bcc1036fa546a4674ce30184144d38844 (diff)
downloadcpython-fbe34faba983f6a444da2c93f732d4429a08fdfd.zip
cpython-fbe34faba983f6a444da2c93f732d4429a08fdfd.tar.gz
cpython-fbe34faba983f6a444da2c93f732d4429a08fdfd.tar.bz2
syslog docs by steve clift
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib.tex1
-rw-r--r--Doc/lib/lib.tex1
-rw-r--r--Doc/lib/libsyslog.tex67
-rw-r--r--Doc/libsyslog.tex67
4 files changed, 136 insertions, 0 deletions
diff --git a/Doc/lib.tex b/Doc/lib.tex
index f8c6716..049b0ce 100644
--- a/Doc/lib.tex
+++ b/Doc/lib.tex
@@ -120,6 +120,7 @@ to Python and how to embed it in other applications.
\input{libtermios}
\input{libfcntl}
\input{libposixfile}
+\input{libsyslog}
\input{libpdb} % The Python Debugger
diff --git a/Doc/lib/lib.tex b/Doc/lib/lib.tex
index f8c6716..049b0ce 100644
--- a/Doc/lib/lib.tex
+++ b/Doc/lib/lib.tex
@@ -120,6 +120,7 @@ to Python and how to embed it in other applications.
\input{libtermios}
\input{libfcntl}
\input{libposixfile}
+\input{libsyslog}
\input{libpdb} % The Python Debugger
diff --git a/Doc/lib/libsyslog.tex b/Doc/lib/libsyslog.tex
new file mode 100644
index 0000000..5b4fdde
--- /dev/null
+++ b/Doc/lib/libsyslog.tex
@@ -0,0 +1,67 @@
+\section{Built-in Module \sectcode{syslog}}
+\bimodindex{syslog}
+
+This module provides an interface to the Unix \code{syslog} library
+routines. Refer to the \UNIX{} manual pages for a detailed description
+of the \code{syslog} facility.
+
+The module defines the following functions:
+
+\begin{funcdesc}{syslog}{\optional{priority\,} message}
+Send the string \var{message} to the system logger.
+A trailing newline is added if necessary.
+Each message is tagged with a priority composed of a \var{facility} and
+a \var{level}.
+The optional \var{priority} argument, which defaults to
+\code{(LOG_USER | LOG_INFO)}, determines the message priority.
+\end{funcdesc}
+
+\begin{funcdesc}{openlog}{ident\, \optional{logopt\, \optional{facility}}}
+Logging options other than the defaults can be set by explicitly opening
+the log file with \code{openlog()} prior to calling \code{syslog()}.
+The defaults are (usually) \var{ident} = \samp{syslog}, \var{logopt} = 0,
+\var{facility} = \code{LOG_USER}.
+The \var{ident} argument is a string which is prepended to every message.
+The optional \var{logopt} argument is a bit field - see below for possible
+values to combine.
+The optional \var{facility} argument sets the default facility for messages
+which do not have a facility explicitly encoded.
+\end{funcdesc}
+
+\begin{funcdesc}{closelog}{}
+Close the log file.
+\end{funcdesc}
+
+\begin{funcdesc}{setlogmask}{maskpri}
+This function set the priority mask to \var{maskpri} and returns the
+previous mask value.
+Calls to \code{syslog} with a priority level not set in \var{maskpri}
+are ignored.
+The default is to log all priorities.
+The function \code{LOG_MASK(\var{pri})} calculates the mask for the
+individual priority \var{pri}.
+The function \code{LOG_UPTO(\var{pri})} calculates the mask for all priorities
+up to and including \var{pri}.
+\end{funcdesc}
+
+The module defines the following constants:
+
+\begin{description}
+
+\item[Priority levels (high to low):]
+
+\code{LOG_EMERG}, \code{LOG_ALERT}, \code{LOG_CRIT}, \code{LOG_ERR},
+\code{LOG_WARNING}, \code{LOG_NOTICE}, \code{LOG_INFO}, \code{LOG_DEBUG}.
+
+\item[Facilities:]
+
+\code{LOG_KERN}, \code{LOG_USER}, \code{LOG_MAIL}, \code{LOG_DAEMON},
+\code{LOG_AUTH}, \code{LOG_LPR}, \code{LOG_NEWS}, \code{LOG_UUCP},
+\code{LOG_CRON} and \code{LOG_LOCAL0} to \code{LOG_LOCAL7}.
+
+\item[Log options:]
+
+\code{LOG_PID}, \code{LOG_CONS}, \code{LOG_NDELAY}, \code{LOG_NOWAIT}
+and \code{LOG_PERROR} if defined in \file{syslog.h}.
+
+\end{description}
diff --git a/Doc/libsyslog.tex b/Doc/libsyslog.tex
new file mode 100644
index 0000000..5b4fdde
--- /dev/null
+++ b/Doc/libsyslog.tex
@@ -0,0 +1,67 @@
+\section{Built-in Module \sectcode{syslog}}
+\bimodindex{syslog}
+
+This module provides an interface to the Unix \code{syslog} library
+routines. Refer to the \UNIX{} manual pages for a detailed description
+of the \code{syslog} facility.
+
+The module defines the following functions:
+
+\begin{funcdesc}{syslog}{\optional{priority\,} message}
+Send the string \var{message} to the system logger.
+A trailing newline is added if necessary.
+Each message is tagged with a priority composed of a \var{facility} and
+a \var{level}.
+The optional \var{priority} argument, which defaults to
+\code{(LOG_USER | LOG_INFO)}, determines the message priority.
+\end{funcdesc}
+
+\begin{funcdesc}{openlog}{ident\, \optional{logopt\, \optional{facility}}}
+Logging options other than the defaults can be set by explicitly opening
+the log file with \code{openlog()} prior to calling \code{syslog()}.
+The defaults are (usually) \var{ident} = \samp{syslog}, \var{logopt} = 0,
+\var{facility} = \code{LOG_USER}.
+The \var{ident} argument is a string which is prepended to every message.
+The optional \var{logopt} argument is a bit field - see below for possible
+values to combine.
+The optional \var{facility} argument sets the default facility for messages
+which do not have a facility explicitly encoded.
+\end{funcdesc}
+
+\begin{funcdesc}{closelog}{}
+Close the log file.
+\end{funcdesc}
+
+\begin{funcdesc}{setlogmask}{maskpri}
+This function set the priority mask to \var{maskpri} and returns the
+previous mask value.
+Calls to \code{syslog} with a priority level not set in \var{maskpri}
+are ignored.
+The default is to log all priorities.
+The function \code{LOG_MASK(\var{pri})} calculates the mask for the
+individual priority \var{pri}.
+The function \code{LOG_UPTO(\var{pri})} calculates the mask for all priorities
+up to and including \var{pri}.
+\end{funcdesc}
+
+The module defines the following constants:
+
+\begin{description}
+
+\item[Priority levels (high to low):]
+
+\code{LOG_EMERG}, \code{LOG_ALERT}, \code{LOG_CRIT}, \code{LOG_ERR},
+\code{LOG_WARNING}, \code{LOG_NOTICE}, \code{LOG_INFO}, \code{LOG_DEBUG}.
+
+\item[Facilities:]
+
+\code{LOG_KERN}, \code{LOG_USER}, \code{LOG_MAIL}, \code{LOG_DAEMON},
+\code{LOG_AUTH}, \code{LOG_LPR}, \code{LOG_NEWS}, \code{LOG_UUCP},
+\code{LOG_CRON} and \code{LOG_LOCAL0} to \code{LOG_LOCAL7}.
+
+\item[Log options:]
+
+\code{LOG_PID}, \code{LOG_CONS}, \code{LOG_NDELAY}, \code{LOG_NOWAIT}
+and \code{LOG_PERROR} if defined in \file{syslog.h}.
+
+\end{description}