summaryrefslogtreecommitdiff
path: root/doNormal.go
diff options
context:
space:
mode:
Diffstat (limited to 'doNormal.go')
-rw-r--r--doNormal.go4
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