summaryrefslogtreecommitdiffstats
path: root/src/util/util.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-07-08 10:05:22 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-07-09 15:00:56 -0400
commit5c705137ea853613318a29f0cd760688ab4daef3 (patch)
tree1f73c4c2ee1443e6e0c2c67ac0aeb340c19c408e /src/util/util.h
parent2060eb9ddd46a65947ff47cbe4cd9922319525c1 (diff)
downloadsssd-5c705137ea853613318a29f0cd760688ab4daef3.tar.gz
sssd-5c705137ea853613318a29f0cd760688ab4daef3.tar.xz
sssd-5c705137ea853613318a29f0cd760688ab4daef3.zip
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.
Diffstat (limited to 'src/util/util.h')
-rw-r--r--src/util/util.h12
1 files changed, 12 insertions, 0 deletions
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;