diff options
| -rw-r--r-- | doGit.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) } } |
