Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-03-14 01:56:17 +0300
committerJunio C Hamano <gitster@pobox.com>2022-03-14 01:56:17 +0300
commit8b44e05abf256c5c43116b983719cafca2934952 (patch)
tree79d894b78d49a2d1be1123ad62b27d0720444f91 /merge-ort.c
parentf62106d750d6442ec2dda92908d4625c4ce90b99 (diff)
parent624a93507ed3af41506bb4878c43ed3d33be287e (diff)
Merge branch 'en/merge-ort-align-verbosity-with-recursive'
Align the level of verbose output from the ort backend during inner merge to that of the recursive backend. * en/merge-ort-align-verbosity-with-recursive: merge-ort: exclude messages from inner merges by default
Diffstat (limited to 'merge-ort.c')
-rw-r--r--merge-ort.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/merge-ort.c b/merge-ort.c
index ff739d4b36..97da477c7e 100644
--- a/merge-ort.c
+++ b/merge-ort.c
@@ -639,8 +639,9 @@ static void path_msg(struct merge_options *opt,
if (opt->record_conflict_msgs_as_headers && omittable_hint)
return; /* Do not record mere hints in headers */
- if (opt->record_conflict_msgs_as_headers && opt->priv->call_depth)
- return; /* Do not record inner merge issues in headers */
+ if (opt->priv->call_depth && opt->verbosity < 5)
+ return; /* Ignore messages from inner merges */
+
sb = strmap_get(&opt->priv->output, path);
if (!sb) {
sb = xmalloc(sizeof(*sb));