From 03c6bdb39c92957204bbb66875b3460be8b01e95 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:52:48 +1000 Subject: [PATCH] Fix fmt in resolver.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- crates/binstalk-downloader/src/remote/resolver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/binstalk-downloader/src/remote/resolver.rs b/crates/binstalk-downloader/src/remote/resolver.rs index aa721d3c..d45327f6 100644 --- a/crates/binstalk-downloader/src/remote/resolver.rs +++ b/crates/binstalk-downloader/src/remote/resolver.rs @@ -31,7 +31,7 @@ impl Resolve for TrustDnsResolver { #[cfg(unix)] fn get_configs() -> Result<(ResolverConfig, ResolverOpts), BoxError> { - debug!("Using system DNS resolver configuration"); + debug!("Using system DNS resolver configuration"); system_conf::read_system_conf().map_err(Into::into) }