syslog(3) | Library Functions Manual | syslog(3) |
closelog, openlog, syslog, vsyslog - envían mensajes a la bitácora (log) del sistema
Biblioteca Estándar C (libc, -lc)
#include <syslog.h>
void openlog(const char *ident, int opción, int facilidad); void syslog(int prioridad, const char *formato, ...); void closelog(void);
void vsyslog(int prioridad, const char *formato, va_list ap);
vsyslog():
A partir de glibc 2.19:
_DEFAULT_SOURCE
glibc 2.19 y anteriores:
_BSD_SOURCE
openlog() abre una conexión para una determinada aplicación a la bitácora del equipo.
The string pointed to by ident is prepended to every message, and is typically set to the program name. If ident is NULL, the program name is used. (POSIX.1-2008 does not specify the behavior when ident is NULL.)
The option argument specifies flags which control the operation of openlog() and subsequent calls to syslog(). The facility argument establishes a default to be used if none is specified in subsequent calls to syslog(). The values that may be specified for option and facility are described below.
The use of openlog() is optional; it will automatically be called by syslog() if necessary, in which case ident will default to NULL.
syslog() generates a log message, which will be distributed by syslogd(8).
The priority argument is formed by ORing together a facility value and a level value (described below). If no facility value is ORed into priority, then the default value set by openlog() is used, or, if there was no preceding openlog() call, a default of LOG_USER is employed.
The remaining arguments are a format, as in printf(3), and any arguments required by the format, except that the two-character sequence %m will be replaced by the error message string strerror(errno). The format string need not include a terminating newline character.
La función vsyslog() hace la misma tarea que syslog() con la diferencia de que acepta un conjunto de argumentos que han sido obtenidos usando las macros de stdarg(3) para listas de argumentos variables.
closelog() cierra el descriptor de archivo que se esté usando para escribir en el la bitácora del sistema. El empleo de closelog() es opcional.
The option argument to openlog() is a bit mask constructed by ORing together any of the following values:
El argumento facility se emplea para especificar qué tipo de programa está registrando el mensaje. Esto permite que en el fichero de configuración se especifique que mensajes de diferentes programas se manejen de forma distinta.
Esto determina la importancia del mensaje. Los niveles son, en orden de importancia decreciente:
La función setlogmask(3) puede ser empleada para restringir el registro solamente en niveles determinados.
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
openlog(), closelog() | Seguridad del hilo | Multi-hilo seguro |
syslog(), vsyslog() | Seguridad del hilo | MT-Safe env locale |
Las funciones openlog(), closelog() y syslog() (pero no vsyslog()) están especificadas en SUSv2, POSIX.1-2001 y POSIX.1-2008.
POSIX.1-2001 especifica solamente los valores LOG_USER y LOG_LOCAL* para facility. Sin embargo, salvo la excepción de LOG_AUTHPRIV y LOG_FTP, los otros valores de facility aparecen en la mayoría de sistemas UNIX.
El valor LOG_PERROR para option no está especificado por POSIX.1-2001 o POSIX.1-2008, pero está disponible en la mayoría de versiones de Unix.
The argument ident in the call of openlog() is probably stored as-is. Thus, if the string it points to is changed, syslog() may start prepending the changed string, and if the string it points to ceases to exist, the results are undefined. Most portable is to use a string constant.
Never pass a string with user-supplied data as a format, use the following instead:
syslog(priority, "%s", string);
journalctl(1), logger(1), setlogmask(3), syslog.conf(5), syslogd(8)
La traducción al español de esta página del manual fue creada por Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>, Miguel Pérez Ibars <mpi79470@alu.um.es> y Marcos Fouces <marcos@debian.org>
Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.
5 Febrero 2023 | Páginas de manual de Linux 6.03 |