diff options
| -rw-r--r-- | doClean.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |
