diff options
Diffstat (limited to 'doDirty.go')
| -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 { |
