builtin/submodule--helper: remove debugging leftover tracing

I noticed 74d4731da1 (submodule--helper: replace connect-gitdir-workingtree by ensure-core-worktree, 2018-08-13) had two leftover debugging statements when reading The coverage report [1]. Remove them. https://public-inbox.org/git/e30a9c05-87d8-1f2b-182c-6d6a5fefe43c@gmail.com/ Signed-off-by: Stefan Beller <sbeller@google.com> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Stefan Beller committed Oct 16, 2018 at 16:45 UTC 48b91d971404afd79446810b22088b91adbb4ed2
1 file changed -2
builtin/submodule--helper.c
-2
@@ -1457,7 +1457,6 @@ static void determine_submodule_update_strategy(struct repository *r,
1457 key = xstrfmt("submodule.%s.update", sub->name);
1458
1459 if (update) {
1460 - trace_printf("parsing update");
1460 if (parse_submodule_update_strategy(update, out) < 0)
1461 die(_("Invalid update mode '%s' for submodule path '%s'"),
1462 update, path);
@@ -1466,7 +1465,6 @@ static void determine_submodule_update_strategy(struct repository *r,
1465 die(_("Invalid update mode '%s' configured for submodule path '%s'"),
1466 val, path);
1467 } else if (sub->update_strategy.type != SM_UPDATE_UNSPECIFIED) {
1469 - trace_printf("loaded thing");
1468 out->type = sub->update_strategy.type;
1469 out->command = sub->update_strategy.command;
1470 } else