summaryrefslogtreecommitdiffstats
path: root/polyp/log.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-09-05 00:03:16 +0000
committerLennart Poettering <lennart@poettering.net>2004-09-05 00:03:16 +0000
commit6c4fd620408b3f14a1d4164d58db70df7a252674 (patch)
tree3767a0fb76a3941267f9b6980075149dc31cb6bc /polyp/log.h
parent57e473b61cf373f8d9befb03d359b999eca4262b (diff)
implement proper logging
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@179 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'polyp/log.h')
-rw-r--r--polyp/log.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/polyp/log.h b/polyp/log.h
new file mode 100644
index 00000000..1f2c74ef
--- /dev/null
+++ b/polyp/log.h
@@ -0,0 +1,17 @@
+#ifndef foologhfoo
+#define foologhfoo
+
+#include "gcc-printf.h"
+
+enum pa_log_target {
+ PA_LOG_SYSLOG,
+ PA_LOG_STDERR,
+ PA_LOG_USER,
+};
+
+void pa_log_set_ident(const char *p);
+void pa_log_set_target(enum pa_log_target t, void (*func)(const char*s));
+
+void pa_log(const char *format, ...) PA_GCC_PRINTF_ATTR(1,2);
+
+#endif