From be5f114694007354ba48801c632dd4726005cf8a Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Wed, 17 May 2023 11:25:07 +0000 Subject: [PATCH] fix: decrease log level --- distro.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distro.go b/distro.go index c31df62..5f24a21 100644 --- a/distro.go +++ b/distro.go @@ -77,7 +77,7 @@ func (cmd *DebianFetchCmd) fetch(pkg snapshot.Package) { flog.Debug().Msg("check mirror") found, _ := cache.PackageURL(config.Debian, pkg.Deb.URL) if found { - flog.Info().Msg("found on the mirror") + flog.Debug().Msg("found on the mirror") return } }