From 5c705137ea853613318a29f0cd760688ab4daef3 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 8 Jul 2010 10:05:22 -0400 Subject: Add sss_log() function Right now, this log function writes to the syslog. In the future, it could be modified to work with ELAPI or another logging API. --- src/util/util.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/util/util.h') diff --git a/src/util/util.h b/src/util/util.h index 1277305e2..3c95f7a20 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -212,6 +212,18 @@ int open_debug_file_ex(const char *filename, FILE **filep); int open_debug_file(void); int rotate_debug_files(void); +/* From sss_log.c */ +#define SSS_LOG_EMERG 0 /* system is unusable */ +#define SSS_LOG_ALERT 1 /* action must be taken immediately */ +#define SSS_LOG_CRIT 2 /* critical conditions */ +#define SSS_LOG_ERR 3 /* error conditions */ +#define SSS_LOG_WARNING 4 /* warning conditions */ +#define SSS_LOG_NOTICE 5 /* normal but significant condition */ +#define SSS_LOG_INFO 6 /* informational */ +#define SSS_LOG_DEBUG 7 /* debug-level messages */ + +void sss_log(int priority, const char *format, ...); + /* from server.c */ struct main_context { struct tevent_context *event_ctx; -- cgit