diff options
author | Marek Vavruša <marek.vavrusa@nic.cz> | 2015-09-15 16:37:19 +0200 |
---|---|---|
committer | Marek Vavruša <marek.vavrusa@nic.cz> | 2015-09-15 16:38:05 +0200 |
commit | 004eabcf9e5deaca33f9d3f0bdd3b7336d22d33f (patch) | |
tree | e52e39ebbc485274fc631dcf6cb7e312d005ecbd /lib/dnssec/ta.c | |
parent | Merge branch 'cache-rrsig-wip' of gitlab.labs.nic.cz:knot/resolver into cache... (diff) | |
download | knot-resolver-004eabcf9e5deaca33f9d3f0bdd3b7336d22d33f.tar.xz knot-resolver-004eabcf9e5deaca33f9d3f0bdd3b7336d22d33f.zip |
daemon: '-v' turns verbose log, debug messages built in by default
previously, debug messages were optional with -DWITH_DEBUG
now the debug messages are built in (unless compiled with -DNDEBUG), but
disabled by default
verbose output can be enabled by '-v' or '--verbose' CLI option
or interactively by 'verbose(true|false)' (or in config)
Diffstat (limited to 'lib/dnssec/ta.c')
-rw-r--r-- | lib/dnssec/ta.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/dnssec/ta.c b/lib/dnssec/ta.c index aebb4bf8..9fabfb35 100644 --- a/lib/dnssec/ta.c +++ b/lib/dnssec/ta.c @@ -427,12 +427,6 @@ int kr_ta_parse(knot_rrset_t **rr, const char *ds_str, mm_ctx_t *pool) *rr = ds_set; ds_set = NULL; -#ifdef WITH_DEBUG -// char buff[1024]; -// knot_rrset_txt_dump(*rr, buff, 1024, &KNOT_DUMP_STYLE_DEFAULT); -// fprintf(stderr, "%s() '%s'\n", __func__, buff); -#endif - fail: knot_rrset_free(&ds_set, pool); mm_free(pool, rdata); |