decrease log verbosity for potentially cached NoRecordsFound

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-04-26 16:39:57 -07:00 committed by June
parent daf4b56435
commit 37ecb4f2b9

View file

@ -433,7 +433,8 @@ fn handle_resolve_error(e: &ResolveError) -> Result<()> {
ResolveErrorKind::NoRecordsFound { ResolveErrorKind::NoRecordsFound {
.. ..
} => { } => {
debug_warn!("{e}"); // Raise to debug_warn if we can find out the result wasn't from cache
debug!("{e}");
Ok(()) Ok(())
}, },
_ => { _ => {