123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #ifndef foodaemonloghfoo
- #define foodaemonloghfoo
- #include <syslog.h>
- #include <stdarg.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- enum daemon_log_flags {
- DAEMON_LOG_SYSLOG = 1,
- DAEMON_LOG_STDERR = 2,
- DAEMON_LOG_STDOUT = 4,
- DAEMON_LOG_AUTO = 8
- };
- extern enum daemon_log_flags daemon_log_use;
- extern const char* daemon_log_ident;
- #if defined(__GNUC__) && ! defined(DAEMON_GCC_PRINTF_ATTR)
- #define DAEMON_GCC_PRINTF_ATTR(a,b) __attribute__ ((format (printf, a, b)))
- #else
- #define DAEMON_GCC_PRINTF_ATTR(a,b)
- #endif
- void daemon_log(int prio, const char* t, ...) DAEMON_GCC_PRINTF_ATTR(2,3);
- #define DAEMON_LOGV_AVAILABLE 1
- void daemon_logv(int prio, const char* t, va_list ap);
- char *daemon_ident_from_argv0(char *argv0);
- #define DAEMON_SET_VERBOSITY_AVAILABLE 1
- void daemon_set_verbosity(int verbosity_prio);
- #ifdef __cplusplus
- }
- #endif
- #endif
|