From f7d2e8ccc7e4e2b2418c316ca7c5e757e4515841 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Wed, 9 Mar 2022 19:05:25 +0100 Subject: [PATCH] improved logging --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 60feb9f..8a9d7bf 100644 --- a/main.go +++ b/main.go @@ -407,7 +407,7 @@ func (b *BuildManager) syncWorker(ctx context.Context) error { for _, pkg := range queue { eligible, err := pkg.isEligible(ctx) if err != nil { - log.Warningf("Unable to determine status for package %s: %v", pkg.Pkgbase, err) + log.Infof("Unable to determine status for package %s: %v", pkg.Pkgbase, err) } if !eligible { log.Debugf("skipped package %s (%v)", pkg.Pkgbase, err)