From: Tomas Krizek Date: Thu, 8 Jul 2021 14:40:42 +0000 (+0200) Subject: logging: nitpicks X-Git-Tag: v5.4.0~2^2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=561c2495320ba5ec9a3ee13148a02b680acf853d;p=thirdparty%2Fknot-resolver.git logging: nitpicks --- diff --git a/modules/ta_update/ta_update.lua b/modules/ta_update/ta_update.lua index 6c033cb1e..b0a8520ee 100644 --- a/modules/ta_update/ta_update.lua +++ b/modules/ta_update/ta_update.lua @@ -193,7 +193,7 @@ local function update(keyset, new_keys) -- TODO: try to rebootstrap if for root? return false else - log_info(ffi.C.LOG_GRP_TAUPDATE, 'refreshed trust anchors for domain ' .. kres.dname2str(keyset.owner) .. ' are:\n' + log_debug(ffi.C.LOG_GRP_TAUPDATE, 'refreshed trust anchors for domain ' .. kres.dname2str(keyset.owner) .. ' are:\n' .. trust_anchors.summary(keyset.owner)) end diff --git a/tests/config/test.cfg b/tests/config/test.cfg index 4eddea021..b45226cf4 100644 --- a/tests/config/test.cfg +++ b/tests/config/test.cfg @@ -21,7 +21,7 @@ modules.unload 'ta_update' -- load test local ffi = require('ffi') assert(type(env.TEST_FILE) == 'string') -log_info(ffi.C.LOG_GRP_SYSTEM, 'processing test file %s', env.TEST_FILE) +log_info(ffi.C.LOG_GRP_TESTS, 'processing test file %s', env.TEST_FILE) local tests = dofile(env.TEST_FILE) -- run test after processed config file