summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doGit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doGit.go b/doGit.go
index 6ef6f96..1bebbf2 100644
--- a/doGit.go
+++ b/doGit.go
@@ -32,7 +32,7 @@ func doGit() error {
result := shell.RunQuiet(cmd)
for i, line := range result.Stdout {
parts := strings.Split(line, "\x00")
- log.Infof("LINE: %d %v\n", i, parts)
+ log.Infof("LINE: %d len(%d) %v\n", i, len(parts), parts)
}
}