From 313b10b4090875a92072afa1782369097f93d78f Mon Sep 17 00:00:00 2001 From: "a.komissarov" Date: Sun, 25 Aug 2024 00:56:05 +0300 Subject: [PATCH] refactor --- dns/dns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/dns.go b/dns/dns.go index ae18ae3..8768974 100644 --- a/dns/dns.go +++ b/dns/dns.go @@ -53,7 +53,7 @@ func (d *Dns) ResolveHost(ctx context.Context, host string, enableDoh bool, useS ctx, cancel := context.WithTimeout(ctx, 3*time.Second) defer cancel() - logger.Info().Msgf("resolving %s using %s", host, clt) + logger.Debug().Msgf("resolving %s using %s", host, clt) t := time.Now()