| The GNU C Library | www.imodulo.com · 2003-04-05 | ||
| [ Software | Documentation | Contact ] |
The symbols referred to in this section are declared in the file syslog.h.
syslog submits a message to the Syslog facility. It does this by writing to the Unix domain socket /dev/log.
syslog submits the message with the facility and priority indicated by facility_priority. The macro LOG_MAKEPRI generates a facility/priority from a facility and a priority, as in the following example:
LOG_MAKEPRI(LOG_USER, LOG_WARNING)
The possible values for the facility code are (macros):
LOG_USERA miscellaneous user process
LOG_MAILLOG_DAEMONA miscellaneous system daemon
LOG_AUTHSecurity (authorization)
LOG_SYSLOGSyslog
LOG_LPRCentral printer
LOG_NEWSNetwork news (e.g. Usenet)
LOG_UUCPUUCP
LOG_CRONCron and At
LOG_AUTHPRIVPrivate security (authorization)
LOG_FTPFtp server
LOG_LOCAL0Locally defined
LOG_LOCAL1Locally defined
LOG_LOCAL2Locally defined
LOG_LOCAL3Locally defined
LOG_LOCAL4Locally defined
LOG_LOCAL5Locally defined
LOG_LOCAL6Locally defined
LOG_LOCAL7Locally defined
Results are undefined if the facility code is anything else.
note: syslog recognizes one other facility code: that of the kernel. But you can't specify that facility code with these functions. If you try, it looks the same to syslog as if you are requesting the default facility. But you wouldn't want to anyway, because any program that uses the GNU C library is not the kernel.
You can use just a priority code as facility_priority. In that case, syslog assumes the default facility established when the Syslog connection was opened. Syslog Example.
The possible values for the priority code are (macros):
LOG_EMERGThe message says the system is unusable.
LOG_ALERTAction on the message must be taken immediately.
LOG_CRITThe message states a critical condition.
LOG_ERRThe message describes an error.
LOG_WARNINGThe message is a warning.
LOG_NOTICEThe message describes a normal but important event.
LOG_INFOThe message is purely informational.
LOG_DEBUGThe message is only for debugging purposes.
Results are undefined if the priority code is anything else.
If the process does not presently have a Syslog connection open (i.e. it did not call openlog), syslog implicitly opens the connection the same as openlog would, with the following defaults for information that would otherwise be included in an openlog call: The default identification string is the program name. The default default facility is LOG_USER. The default for all the connection options in options is as if those bits were off. syslog leaves the Syslog connection open.
If the dev/log socket is not open and connected, syslog opens and connects it, the same as openlog with the LOG_NDELAY option would.
syslog leaves /dev/log open and connected unless its attempt to send the message failed, in which case syslog closes it (with the hope that a future implicit open will restore the Syslog connection to a usable state).
Example:
#include <syslog.h>
syslog (LOG_MAKEPRI(LOG_LOCAL1, LOG_ERROR),
"Unable to make network connection to %s. Error=%m", host);
This is functionally identical to syslog, with the BSD style variable length argument.
| © Free Software Foundation, Inc. |