summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doCheckout.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/doCheckout.go b/doCheckout.go
index e7f5430..aad0e88 100644
--- a/doCheckout.go
+++ b/doCheckout.go
@@ -37,9 +37,11 @@ func doGitPull() {
func doCheckDirtyAndConfigSave() {
var count int
now := time.Now()
+ // log.Info("before findAll()")
all := me.found.SortByFullPath()
for all.Scan() {
repo := all.Next()
+ // log.Info("before isDirty()")
dirty := repo.IsDirty()
if repo.CheckDirty() {
count += 1