#include <syslog.h>
Include dependency graph for lcmaps_log.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
int | lcmaps_log (int prty, char *fmt,...) |
log information. More... | |
int | lcmaps_log_debug (int debug_lvl, char *fmt,...) |
Print debugging information. More... | |
int | lcmaps_log_time (int prty, char *fmt,...) |
log information with timestamp. More... |
Definition in file lcmaps_log.h.
|
log information.
This function logs information for LCMAPS and its plugins. Syslog() is called with the specified priority. No syslog() is done if the priority is 0.
Definition at line 210 of file lcmaps_log.c. |
|
Print debugging information.
This function prints debugging information (using lcmaps_log with priority 0) provided debug_lvl <= DEBUG_LEVEL (default is 0).
Definition at line 277 of file lcmaps_log.c. |
|
log information with timestamp.
This function logs information with a timestamp for LCMAPS and its plugins. Syslog() is called with the specified priority. No syslog() is done if the priority is 0.
Definition at line 363 of file lcmaps_log.c. |