Contained WithinFind More DocumentationFeatured Support Resources | Download this book in PDF (2279 KB)
syslog(3C)NAME | SYNOPSIS | DESCRIPTION | RETURN VALUES | ERRORS | EXAMPLES | ATTRIBUTES | SEE ALSO NAME
SYNOPSIS
#include <syslog.h>void openlog(const char *ident, int logopt, int facility); void syslog(int priority, const char *message, .../* arguments */); void closelog(void); int setlogmask(int maskpri); DESCRIPTION
The syslog() function sends a message to syslogd(1M), which, depending on the configuration of /etc/syslog.conf, logs it in an appropriate system log, writes it to the system console, forwards it to a list of users, or forwards it to syslogd on another host over the network. The logged message includes a message header and a message body. The message header consists of a facility indicator, a severity level indicator, a timestamp, a tag string, and optionally the process ID. The message body is generated from the message and following arguments in the same manner as if these were arguments to printf(3UCB), except that occurrences of %m in the format string pointed to by the message argument are replaced by the error message string associated with the current value of errno. A trailing NEWLINE character is added if needed. Values of the priority argument are formed by ORing together a severity level value and an optional facility value. If no facility value is specified, the current default facility value is used. Possible values of severity level include: The facility indicates the application or system component generating the message. Possible facility values include: The openlog() function sets process attributes that affect subsequent calls to syslog(). The ident argument is a string that is prepended to every message. The logopt argument indicates logging options. Values for logopt are constructed by a bitwise-inclusive OR of zero or more of the following: The facility argument encodes a default facility to be assigned to all messages that do not have an explicit facility already encoded. The initial default facility is LOG_USER. The openlog() and syslog() functions may allocate a file descriptor. It is not necessary to call openlog() prior to calling syslog(). The closelog() function closes any open file descriptors allocated by previous calls to openlog() or syslog(). The setlogmask() function sets the log priority mask for the current process to maskpri and returns the previous mask. If the maskpri argument is 0, the current log mask is not modified. Calls by the current process to syslog() with a priority not set in maskpri are rejected. The mask for an individual priority pri is calculated by the macro LOG_MASK(pri); the mask for all priorities up to and including toppri is given by the macro LOG_UPT(toppri). The default log mask allows all priorities to be logged. Symbolic constants for use as values of the logopt, facility, priority, and maskpri arguments are defined in the <syslog.h> header. RETURN VALUESThe setlogmask() function returns the previous log priority mask. The closelog(), openlog() and syslog() functions return no value. ERRORSNo errors are defined. EXAMPLESExample 1 Example of LOG_ALERT message.This call logs a message at priority LOG_ALERT:
The FTP daemon ftpd would make this call to openlog() to indicate that all messages it logs should have an identifying string of ftpd, should be treated by syslogd(1M) as other messages from system daemons are, should include the process ID of the process logging the message:
Then it would make the following call to setlogmask() to indicate that messages at priorities from LOG_EMERG through LOG_ERR should be logged, but that no messages at any other priority should be logged:
Then, to log a message at priority LOG_INFO, it would make the following call to syslog:
A locally-written utility could use the following call to syslog() to log a message at priority LOG_INFO to be treated by syslogd(1M) as other messages to the facility LOG_LOCAL2 are:
ATTRIBUTESSee attributes(5) for descriptions of the following attributes:
SEE ALSOat(1), crontab(1), logger(1), login(1), lpc(1B), lpr(1B), cron(1M), getty(1M), in.ftpd(1M), su(1M), syslogd(1M), printf(3UCB), syslog.conf(4), attributes(5) NAME | SYNOPSIS | DESCRIPTION | RETURN VALUES | ERRORS | EXAMPLES | ATTRIBUTES | SEE ALSO |
|||||||||