diff options
| author | Jeff Carr <[email protected]> | 2025-10-04 15:30:21 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-04 15:30:21 -0500 |
| commit | 8fea408fbae0e11aaaef784c8406595add62a8b0 (patch) | |
| tree | 0038ff7abb056172602867de474a01b5741d54b3 | |
| parent | 8d535b0a0771ceb53a4163226b1d7d5f95052989 (diff) | |
minor
| -rw-r--r-- | doDirty.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 { |
