summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-04 15:30:21 -0500
committerJeff Carr <[email protected]>2025-10-04 15:30:21 -0500
commit8fea408fbae0e11aaaef784c8406595add62a8b0 (patch)
tree0038ff7abb056172602867de474a01b5741d54b3
parent8d535b0a0771ceb53a4163226b1d7d5f95052989 (diff)
minor
-rw-r--r--doDirty.go4
1 files changed, 2 insertions, 2 deletions
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 {