summaryrefslogtreecommitdiffstats
path: root/libdaemon/dlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'libdaemon/dlog.h')
-rw-r--r--libdaemon/dlog.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libdaemon/dlog.h b/libdaemon/dlog.h
index 814171f..9755df6 100644
--- a/libdaemon/dlog.h
+++ b/libdaemon/dlog.h
@@ -81,6 +81,20 @@ void daemon_logv(int prio, const char* t, va_list ap);
*/
char *daemon_ident_from_argv0(char *argv0);
+/**
+ * @brief Setter for the verbosity level of standard output.
+ *
+ * @param verbose_level Minimum priority level for messages to output
+ * on standard output/error
+ *
+ * Allows to decide which messages to output on standard output/error
+ * streams. All messages are logged to syslog and this setting does
+ * not influence that.
+ *
+ * The default value is LOG_WARNING.
+ */
+void daemon_set_verbosity(int verbosity_prio);
+
#ifdef __cplusplus
}
#endif