diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 15:54:19 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 15:54:19 -0500 |
| commit | 6d249abb44414cea57f496e24a682466a7772f87 (patch) | |
| tree | 8c8a8996782ae47c29e0d5556add0ebc1faf344d /doNormal.go | |
| parent | f754a93493e6a12c1d60dec9b71be841b9aaa2b6 (diff) | |
Diffstat (limited to 'doNormal.go')
| -rw-r--r-- | doNormal.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doNormal.go b/doNormal.go index 7ba172b..edf1699 100644 --- a/doNormal.go +++ b/doNormal.go @@ -19,8 +19,8 @@ func doNormal() bool { stats := me.forge.RillRepos(checkNormalRepoState) for path, stat := range stats { dur := stat.End.Sub(stat.Start) - if dur > time.Second { - log.Infof("%-30v %s took a long time\n", dur, path) + if dur > 10*time.Second { + log.Infof("%-30v %s checkNormalRepoState() took a long time\n", dur, path) } if stat.Err == nil { continue |
