Scroll to navigation

syslog.h(0P) POSIX Programmer's Manual syslog.h(0P)

PROLOG

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.

NAME

syslog.h — definitions for system error logging

SYNOPSIS

#include <syslog.h>

DESCRIPTION

The <syslog.h> header shall define the following symbolic constants, zero or more of which may be OR'ed together to form the logopt option of openlog():

Log the process ID with each message.
Log to the system console on error.
Connect to syslog daemon immediately.
Delay open until syslog() is called.
Do not wait for child processes.

The <syslog.h> header shall define the following symbolic constants for use as the facility argument to openlog():

Reserved for message generated by the system.
Message generated by a process.
Reserved for message generated by mail system.
Reserved for message generated by news system.
Reserved for message generated by UUCP system.
Reserved for message generated by system daemon.
Reserved for message generated by authorization daemon.
Reserved for message generated by clock daemon.
Reserved for message generated by printer system.
Reserved for local use.
Reserved for local use.
Reserved for local use.
Reserved for local use.
Reserved for local use.
Reserved for local use.
Reserved for local use.
Reserved for local use.

The <syslog.h> header shall define the following macros for constructing the maskpri argument to setlogmask(). The following macros expand to an expression of type int when the argument pri is an expression of type int:

A mask for priority pri.

The <syslog.h> header shall define the following symbolic constants for use as the priority argument of syslog():

A panic condition was reported to all processes.
A condition that should be corrected immediately.
A critical condition.
An error message.
A warning message.
A condition requiring special handling.
A general information message.
A message useful for debugging programs.

The following shall be declared as functions and may also be defined as macros. Function prototypes shall be provided.

void  closelog(void);
void  openlog(const char *, int, int);
int   setlogmask(int);
void  syslog(int, const char *, ...);

The following sections are informative.

APPLICATION USAGE

None.

RATIONALE

None.

FUTURE DIRECTIONS

None.

SEE ALSO

The System Interfaces volume of POSIX.1‐2017, closelog()

COPYRIGHT

Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1-2017, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 7, 2018 Edition, Copyright (C) 2018 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html .

Any typographical or formatting errors that appear in this page are most likely to have been introduced during the conversion of the source files to man page format. To report such errors, see https://www.kernel.org/doc/man-pages/reporting_bugs.html .

2017 IEEE/The Open Group