diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-07 12:39:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-07 12:39:51 +0200 |
commit | de35eadd5dc9231dcf7f561cbbe07d3b6636cf84 (patch) | |
tree | faf6852a245360f01bf592c8e5df5e29e93b4175 /src | |
parent | 7de2b3426e00a19298d167f574c899a7939122ce (diff) | |
download | abrt-de35eadd5dc9231dcf7f561cbbe07d3b6636cf84.tar.gz abrt-de35eadd5dc9231dcf7f561cbbe07d3b6636cf84.tar.xz abrt-de35eadd5dc9231dcf7f561cbbe07d3b6636cf84.zip |
add comment about VERBn macros
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/Daemon/Daemon.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Daemon/Daemon.h b/src/Daemon/Daemon.h index 3802745d..b24955b1 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; |