From 969f6e284094effe27b33eb2cd4819c71137c9c4 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 9 Jan 2024 14:39:32 -0600 Subject: [PATCH] more debugging Signed-off-by: Jeff Carr --- git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.go b/git.go index 75f4618..76d34bc 100644 --- a/git.go +++ b/git.go @@ -72,8 +72,8 @@ func (r *repo) getCurrentBranchName() string { } func (r *repo) getCurrentBranchVersion() string { - log.Info("r.path", r.path) out := run(r.path, "git", "describe --tags") + log.Warn("getCurrentBranchVersion", out) r.vLabel.SetText(out) return out }