diff options
| author | Jeff Carr <[email protected]> | 2025-10-06 04:27:39 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-06 04:27:39 -0500 |
| commit | dcf2e3fb884f007d9e13911db0e36ff672a321a9 (patch) | |
| tree | 02119facba9c50b94f7fd94c7a6289bd51741a48 | |
| parent | c5796d45570ca3b6d0132cbfa3faabacc070aa13 (diff) | |
minorv0.1.19
| -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) } } |
