From 9272276247e9e47cc1a44c2be678f0091bf9b468 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Sat, 15 Nov 2025 18:15:17 +0100 Subject: [PATCH] Don't log the GetDiff command This is used for internal purposes and shouldn't pollute the command log. --- pkg/commands/git_commands/diff.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/git_commands/diff.go b/pkg/commands/git_commands/diff.go index 4feeb4d7f..3074e653a 100644 --- a/pkg/commands/git_commands/diff.go +++ b/pkg/commands/git_commands/diff.go @@ -55,7 +55,7 @@ func (self *DiffCommands) GetDiff(staged bool, additionalArgs ...string) (string Dir(self.repoPaths.worktreePath). Arg(additionalArgs...). ToArgv(), - ).RunWithOutput() + ).DontLog().RunWithOutput() } type DiffToolCmdOptions struct {