summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doClean.go4
1 files 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
}