summaryrefslogtreecommitdiffstats
path: root/modules/dnstap
diff options
context:
space:
mode:
authorLukáš Ježek <lukas.jezek@nic.cz>2021-07-02 15:09:29 +0200
committerTomas Krizek <tomas.krizek@nic.cz>2021-07-29 11:42:30 +0200
commit599f32246a4e48f95d522d8840473f6138151e7f (patch)
treed115e0e7a5eef4bae2e9741b300e7d0c32d68f80 /modules/dnstap
parentlog: fix CI tests (diff)
downloadknot-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.c2
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"