summaryrefslogtreecommitdiff
path: root/submodule.c
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2021-10-08 21:08:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-10-08 22:06:06 (GMT)
commit71ef66d7403c05a6fe8ec118431332a8919b52a2 (patch)
treece9bc2e1e881541051720704e347b3ec26a6db2a /submodule.c
parent13a2f620b27c0fa29de026de5d74a2434c565ece (diff)
downloadgit-71ef66d7403c05a6fe8ec118431332a8919b52a2.zip
git-71ef66d7403c05a6fe8ec118431332a8919b52a2.tar.gz
git-71ef66d7403c05a6fe8ec118431332a8919b52a2.tar.bz2
submodule: trace adding submodule ODB as alternate
Submodule ODBs are never added as alternates during the execution of the test suite, but there may be a rare interaction that the test suite does not have coverage of. Add a trace message when this happens, so that users who trace their commands can notice such occurrences. Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule.c')
-rw-r--r--submodule.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/submodule.c b/submodule.c
index 4bf552b..61575e5 100644
--- a/submodule.c
+++ b/submodule.c
@@ -201,6 +201,8 @@ int register_all_submodule_odb_as_alternates(void)
add_to_alternates_memory(added_submodule_odb_paths.items[i].string);
if (ret) {
string_list_clear(&added_submodule_odb_paths, 0);
+ trace2_data_intmax("submodule", the_repository,
+ "register_all_submodule_odb_as_alternates/registered", ret);
if (git_env_bool("GIT_TEST_FATAL_REGISTER_SUBMODULE_ODB", 0))
BUG("register_all_submodule_odb_as_alternates() called");
}