diff --git a/CHANGES b/CHANGES index 8464ed8a2e..57291df5f9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +4948. [bug] When request-nsid is turned on, EDNS NSID options + should be logged at level info. Since change 3741 + they have been logged at debug(3) by mistake. + [GL !290] + 4947. [func] Replace all random functions with isc_random(), isc_random_buf() and isc_random_uniform() API. [GL #221] diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c index f9fddc962f..390fbc79a2 100644 --- a/lib/dns/resolver.c +++ b/lib/dns/resolver.c @@ -7618,7 +7618,7 @@ rctx_opt(respctx_t *rctx) { DNS_FETCHOPT_WANTNSID) != 0) { log_nsid(&optbuf, optlen, query, - ISC_LOG_DEBUG(3), + ISC_LOG_INFO, fctx->res->mctx); } isc_buffer_forward(&optbuf, optlen);