From eacb58efbc132b56c1165dd6ae3a8785f6cf5627 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Sat, 3 Jul 2021 22:05:44 +0200 Subject: [PATCH] more formatting --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d1277a8..b483e76 100644 --- a/main.go +++ b/main.go @@ -659,7 +659,7 @@ func (b *BuildManager) syncWorker() { b.parseWG.Wait() if b.stats.eligible != 0 { - log.Infof("Processed source-repos. %d packages elegible to be build, %d already fully build. Covering %f of offical-repo (buildable) packages.", b.stats.eligible, b.stats.fullyBuild, float32(b.stats.fullyBuild)/float32(b.stats.eligible)*100.0) + log.Infof("Processed source-repos. %d packages elegible to be build, %d already fully build. Covering %f%% of offical-repo (buildable) packages.", b.stats.eligible, b.stats.fullyBuild, float32(b.stats.fullyBuild)/float32(b.stats.eligible)*100.0) } b.stats.fullyBuild = 0 b.stats.eligible = 0