From de35eadd5dc9231dcf7f561cbbe07d3b6636cf84 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 7 Sep 2009 12:39:51 +0200 Subject: add comment about VERBn macros Signed-off-by: Denys Vlasenko --- src/Daemon/Daemon.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') 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; -- cgit