diff options
author | Lukáš Ježek <lukas.jezek@nic.cz> | 2021-07-02 15:09:29 +0200 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2021-07-29 11:42:30 +0200 |
commit | 599f32246a4e48f95d522d8840473f6138151e7f (patch) | |
tree | d115e0e7a5eef4bae2e9741b300e7d0c32d68f80 /modules/dnstap | |
parent | log: fix CI tests (diff) | |
download | knot-resolver-599f32246a4e48f95d522d8840473f6138151e7f.tar.xz knot-resolver-599f32246a4e48f95d522d8840473f6138151e7f.zip |
log: use kr_log_debug instead kr_log_verbose
Diffstat (limited to 'modules/dnstap')
-rw-r--r-- | modules/dnstap/dnstap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dnstap/dnstap.c b/modules/dnstap/dnstap.c index f813653b..1182a3ce 100644 --- a/modules/dnstap/dnstap.c +++ b/modules/dnstap/dnstap.c @@ -21,7 +21,7 @@ #include <sys/socket.h> #include <uv.h> -#define DEBUG_MSG(fmt, ...) kr_log_verbose("[dnstap] " fmt, ##__VA_ARGS__); +#define DEBUG_MSG(fmt, ...) kr_log_debug(DNSTAP, fmt, ##__VA_ARGS__); #define CFG_SOCK_PATH "socket_path" #define CFG_IDENTITY_STRING "identity" #define CFG_VERSION_STRING "version" |