summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-09-26 10:45:13 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-09-26 11:00:50 +1000
commitf0a1544ebde246bbf5d28c300fa6e808041b66bc (patch)
tree6d292c2fa6edce56798677c10b5508b48d86ca94 /pkg/commands/git.go
parent077f11361805417c15234c62a9f9aa022f913d43 (diff)
more logging
Diffstat (limited to 'pkg/commands/git.go')
-rw-r--r--pkg/commands/git.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/commands/git.go b/pkg/commands/git.go
index 7b37968ed..722c217a2 100644
--- a/pkg/commands/git.go
+++ b/pkg/commands/git.go
@@ -911,6 +911,7 @@ func (c *GitCommand) PrepareInteractiveRebaseCommand(baseSha string, todo string
}
cmdStr := fmt.Sprintf("git rebase --interactive --autostash --keep-empty %s", baseSha)
+ c.Log.WithField("command", cmdStr).Info("RunCommand")
splitCmd := str.ToArgv(cmdStr)
cmd := c.OSCommand.command(splitCmd[0], splitCmd[1:]...)