summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Daemon/Daemon.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Daemon/Daemon.h b/src/Daemon/Daemon.h
index 3802745..b24955b 100644
--- a/src/Daemon/Daemon.h
+++ b/src/Daemon/Daemon.h
@@ -31,9 +31,13 @@ class CRPM;
/* Verbosity level */
extern int g_verbose;
+/* VERB1 log("what you sometimes want to see, even on a production box") */
#define VERB1 if (g_verbose >= 1)
+/* VERB2 log("debug message, not going into insanely small details") */
#define VERB2 if (g_verbose >= 2)
+/* VERB3 log("lots and lots of details") */
#define VERB3 if (g_verbose >= 3)
+/* there is no level > 3 */
/* Used for sending dbus signals */
extern CCommLayerServer *g_pCommLayer;