diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-09-07 14:09:05 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-09-07 14:09:05 +0200 |
| commit | 9a8effd59d69dc557f5e2931a3577a314697a259 (patch) | |
| tree | 8d2af7c61d573cec27c195149f225f0b962df127 /src | |
| parent | 65dc5d049ed7cb0ae91612a5cfb1e3358c0a9bfd (diff) | |
| parent | bedff13356fa8c4325b30595bc4a052caaf501ed (diff) | |
| download | abrt-9a8effd59d69dc557f5e2931a3577a314697a259.tar.gz abrt-9a8effd59d69dc557f5e2931a3577a314697a259.tar.xz abrt-9a8effd59d69dc557f5e2931a3577a314697a259.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
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 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; |
