diff options
author | Tomas Krizek <tomas.krizek@nic.cz> | 2021-11-09 16:06:25 +0100 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2021-12-21 15:02:08 +0100 |
commit | 0f40f8bb9a78789f8c6e90bb41afe3949a3d9251 (patch) | |
tree | b2aa2795d2a1c16f9a08b0e5b63ec3ca26262543 /lib/cache | |
parent | modules/extended_error: package module (diff) | |
download | knot-resolver-0f40f8bb9a78789f8c6e90bb41afe3949a3d9251.tar.xz knot-resolver-0f40f8bb9a78789f8c6e90bb41afe3949a3d9251.zip |
logging: remove QVERBOSE in favor of kr_log_q
Diffstat (limited to 'lib/cache')
-rw-r--r-- | lib/cache/impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cache/impl.h b/lib/cache/impl.h index 7887341d..a670281e 100644 --- a/lib/cache/impl.h +++ b/lib/cache/impl.h @@ -417,7 +417,7 @@ int nsec3_src_synth(struct key *k, struct answer *ans, const knot_dname_t *clenc -#define VERBOSE_MSG(qry, ...) QRVERBOSE((qry), CACHE, ## __VA_ARGS__) +#define VERBOSE_MSG(qry, ...) kr_log_q((qry), CACHE, ## __VA_ARGS__) #define WITH_VERBOSE(qry) if (kr_log_is_debug_qry(CACHE, (qry))) /** Shorthand for operations on cache backend */ |