diff options
author | Stephen Morris <stephen@isc.org> | 2011-10-14 19:51:48 +0200 |
---|---|---|
committer | Stephen Morris <stephen@isc.org> | 2011-10-14 19:51:48 +0200 |
commit | 621c92d9a19379bb43e98c821183be1aa4d97c7b (patch) | |
tree | 4e885c94ca9550dd4db9a08980c28c1f2ae6ca60 /src/lib/resolve | |
parent | [master] put the text file generation within ENABLE_MAN conditional (diff) | |
download | kea-621c92d9a19379bb43e98c821183be1aa4d97c7b.tar.xz kea-621c92d9a19379bb43e98c821183be1aa4d97c7b.zip |
[1074] First pass at sorting out C++ devug levels
Diffstat (limited to 'src/lib/resolve')
-rw-r--r-- | src/lib/resolve/resolve_log.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/resolve/resolve_log.h b/src/lib/resolve/resolve_log.h index 1f2869ee10..828b9d3352 100644 --- a/src/lib/resolve/resolve_log.h +++ b/src/lib/resolve/resolve_log.h @@ -27,17 +27,17 @@ namespace resolve { /// Note that higher numbers equate to more verbose (and detailed) output. // The first level traces normal operations -const int RESLIB_DBG_TRACE = 10; +const int RESLIB_DBG_TRACE = DBGLVL_TRACE_BASIC; // The next level extends the normal operations and records the results of the // lookups. -const int RESLIB_DBG_RESULTS = 20; +const int RESLIB_DBG_RESULTS = DBGLVL_TRACE_BASIC_DATA; // Report cache lookups and results -const int RESLIB_DBG_CACHE = 40; +const int RESLIB_DBG_CACHE = DBGLVL_TRACE_DETAIL_DATA; // Indicate when callbacks are called -const int RESLIB_DBG_CB = 50; +const int RESLIB_DBG_CB = DBGLVL_TRACE_DETAIL_DATA + 10; /// \brief Resolver Library Logger |