summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-26 03:28:12 -0500
committerJeff Carr <[email protected]>2025-09-26 03:28:12 -0500
commit544b0af3cc21ffe7d8524161b521ef6d8f16fb29 (patch)
tree59c4cdc9e1d971016e76afbe8b4ef8d6b43a4313
parentc5d2f294c46ea64313aa27479155dd78739c567a (diff)
notes on safety of deletev0.25.36
-rw-r--r--doClean.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/doClean.go b/doClean.go
index 8ad3042..e8da80e 100644
--- a/doClean.go
+++ b/doClean.go
@@ -314,7 +314,9 @@ func checkPatchIds(repo *gitpb.Repo, b1 string, b2 string) error {
log.Info(key, val)
}
- if !safe {
+ if safe {
+ log.Info("branch is probably safe to delete", b1, b2)
+ } else {
log.Info("branch is probably not safe to delete", b1, b2, baderr)
}
return baderr