From 718a938cd4f21ea1e41f4172b469ca69a2d9181e Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Fri, 8 Dec 2023 09:35:13 -0800 Subject: [PATCH] Log worktree path --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 0b7d3d84e..2cf6209e7 100644 --- a/main.go +++ b/main.go @@ -1619,7 +1619,7 @@ func (git *repoSync) SyncRepo(ctx context.Context, refreshCreds func(context.Con currentWorktree = wt } currentHash := currentWorktree.Hash() - git.log.V(3).Info("current hash", "hash", currentHash) + git.log.V(3).Info("current state", "hash", currentHash, "worktree", currentWorktree) if currentHash == remoteHash { // We seem to have the right hash already. Let's be sure it's good.