decrease log verbosity for potentially cached NoRecordsFound
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
daf4b56435
commit
37ecb4f2b9
|
@ -433,7 +433,8 @@ fn handle_resolve_error(e: &ResolveError) -> Result<()> {
|
|||
ResolveErrorKind::NoRecordsFound {
|
||||
..
|
||||
} => {
|
||||
debug_warn!("{e}");
|
||||
// Raise to debug_warn if we can find out the result wasn't from cache
|
||||
debug!("{e}");
|
||||
Ok(())
|
||||
},
|
||||
_ => {
|
||||
|
|
Loading…
Reference in New Issue