diff options
author | Nikias Bassen | 2009-08-16 19:08:56 +0200 |
---|---|---|
committer | Hector Martin | 2009-08-16 21:50:48 +0200 |
commit | a63578e2d71ae304f6f405b5bb491547f43b79ac (patch) | |
tree | 9ff375d8c4557430606030a6facd6d93e3ff502e /usbmuxd/log.h | |
parent | a82a04f2c12b5ac5da8f9cb16c17ed4c4f6402a7 (diff) | |
download | usbmuxd-a63578e2d71ae304f6f405b5bb491547f43b79ac.tar.gz usbmuxd-a63578e2d71ae304f6f405b5bb491547f43b79ac.tar.bz2 |
Implemented option handling providing daemonization, verbosity, and logging to syslog
Diffstat (limited to 'usbmuxd/log.h')
-rw-r--r-- | usbmuxd/log.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usbmuxd/log.h b/usbmuxd/log.h index f6eb5c1..4a2ac2e 100644 --- a/usbmuxd/log.h +++ b/usbmuxd/log.h @@ -34,6 +34,9 @@ enum loglevel { extern int log_level; +void log_enable_syslog(); +void log_disable_syslog(); + void usbmuxd_log(enum loglevel level, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); |