From 057577571c84c82c51c2209801b9e8e8c00824e0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 25 Sep 2025 23:48:04 -0500 Subject: show the PatchId & hash --- doClean.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doClean.go b/doClean.go index 8e6e024..fba6ab0 100644 --- a/doClean.go +++ b/doClean.go @@ -295,8 +295,8 @@ func checkPatchIds(repo *gitpb.Repo, b1 string, b2 string) error { if err != nil { continue } - if _, ok := ids[patchId]; ok { - log.Info("already here") + if val, ok := ids[patchId]; ok { + log.Info(patchId, hash, "already here as", val) } else { ids[patchId] = hash } -- cgit v1.2.3