From 8fea408fbae0e11aaaef784c8406595add62a8b0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 4 Oct 2025 15:30:21 -0500 Subject: minor --- doDirty.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doDirty.go') diff --git a/doDirty.go b/doDirty.go index f8d5ec2..b99c949 100644 --- a/doDirty.go +++ b/doDirty.go @@ -28,7 +28,7 @@ func (f *Forge) CheckDirtyQuiet() { } } if changed { - log.Printf("dirty check (%d dirty repos) (%d total repos) (%d changed) took:%s\n", end, f.Repos.Len(), diff, shell.FormatDuration(time.Since(now))) + log.Printf("dirty check (%d dirty repos) (%d total repos) (%d changed) (%s)\n", end, f.Repos.Len(), diff, shell.FormatDuration(time.Since(now))) } } @@ -39,7 +39,7 @@ func (f *Forge) CheckDirty() *gitpb.Repos { stats := f.RillRepos(doCheckDirty) end := f.straightCheckDirty() diff := end - start - log.Printf("dirty check (%d dirty repos) (%d total repos) (%d changed) took:%s\n", end, f.Repos.Len(), diff, shell.FormatDuration(time.Since(now))) + log.Printf("dirty check (%d dirty repos) (%d total repos) (%d changed) (%s)\n", end, f.Repos.Len(), diff, shell.FormatDuration(time.Since(now))) for i, s := range stats { if s.Err == nil { -- cgit v1.2.3