#include <syslog.h>
Go to the source code of this file.
Functions | |
int | lcas_log (int prty, char *fmt,...) |
log information. More... | |
int | lcas_log_debug (int debug_lvl, char *fmt,...) |
Print debugging information. More... | |
int | lcas_log_time (int prty, char *fmt,...) |
log information with timestamp. More... | |
int | lcas_get_debug_level () |
Retrieve the debug_level. More... |
Definition in file lcas_log.h.
|
Retrieve the debug_level.
Definition at line 384 of file lcas_log.c. Referenced by lcas_check_gacl. |
|
log information.
This function does the logging for the LCAS and its plugins. Syslog() is called with the specified priority. No syslog() is done if the priority is 0.
Definition at line 175 of file lcas_log.c. |
|
Print debugging information.
This function prints debugging information (using lcas_log with priority 0) provided debug_lvl <= DEBUG_LEVEL (default is 0).
Definition at line 224 of file lcas_log.c. |
|
log information with timestamp.
This function logs information with a timestamp for LCAS and its plugins. Syslog() is called with the specified priority. No syslog() is done if the priority is 0.
Definition at line 299 of file lcas_log.c. |