summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@gmx.de>2020-06-25 20:10:14 +0200
committerOswald Buddenhagen <oswald.buddenhagen@gmx.de>2020-06-26 10:55:14 +0000
commit7d4c8b82348a8ef2efb7772d16e0b575051a683e (patch)
tree2a5aba26a38c4cf3e0758adf2996960acce1a5b9 /bin
parent5ba35642994292067e0fe6263a5cfddfa7516935 (diff)
downloadqtrepotools-7d4c8b82348a8ef2efb7772d16e0b575051a683e.tar.gz
gpick: make the debug output for base determination less confusing
amends 13a563b8. Change-Id: I1b9843375890c4654aff4675d5ee5ad8252c2ecb Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/git-gpick4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/git-gpick b/bin/git-gpick
index 64a784d..154c42e 100755
--- a/bin/git-gpick
+++ b/bin/git-gpick
@@ -1239,11 +1239,11 @@ sub analyze_patchset($$)
# Series which are pushed on top of other pending Changes have their base
# stored in an extra field on Gerrit, as otherwise it's indeterminable.
set_base_imposed($rev_id, $base);
- print "Have push-base $base for $rev_id.\n" if ($debug);
+ print "Have push-base $base for $rev_id ($cat).\n" if ($debug);
} else {
# For the remaining PatchSets, the merge-base with upstream is the base.
$base = set_base_deduced($rev_id);
- print "Inferred push-base $base for $rev_id.\n" if ($debug);
+ print "Inferred push-base $base for $rev_id ($cat).\n" if ($debug);
}
}