mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '3139-log-the-result-of-each-resolver-priming-attempt-v9_18' into 'v9_18'
[v9_18] Log the result of each resolver priming attempt See merge request isc-projects/bind9!5847
This commit is contained in:
commit
01529bf791
2 changed files with 6 additions and 1 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
5805. [func] The result of each resolver priming attempt is now
|
||||
included in the "resolver priming query complete" log
|
||||
message. [GL #3139]
|
||||
|
||||
5804. [func] Add a debug log message when starting and ending
|
||||
the task exclusive mode. [GL #3137]
|
||||
|
||||
|
|
|
|||
|
|
@ -10231,7 +10231,8 @@ prime_done(isc_task_t *task, isc_event_t *event) {
|
|||
|
||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_RESOLVER,
|
||||
DNS_LOGMODULE_RESOLVER, ISC_LOG_INFO,
|
||||
"resolver priming query complete");
|
||||
"resolver priming query complete: %s",
|
||||
isc_result_totext(fevent->result));
|
||||
|
||||
UNUSED(task);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue