Skip to content

Commit 48b91d9

Browse files
stefanbellergitster
authored andcommitted
builtin/submodule--helper: remove debugging leftover tracing
I noticed 74d4731 (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/[email protected]/ Signed-off-by: Stefan Beller <[email protected]> Reviewed-by: Jonathan Nieder <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a4b8ab5 commit 48b91d9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

builtin/submodule--helper.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,6 @@ static void determine_submodule_update_strategy(struct repository *r,
14571457
key = xstrfmt("submodule.%s.update", sub->name);
14581458

14591459
if (update) {
1460-
trace_printf("parsing update");
14611460
if (parse_submodule_update_strategy(update, out) < 0)
14621461
die(_("Invalid update mode '%s' for submodule path '%s'"),
14631462
update, path);
@@ -1466,7 +1465,6 @@ static void determine_submodule_update_strategy(struct repository *r,
14661465
die(_("Invalid update mode '%s' configured for submodule path '%s'"),
14671466
val, path);
14681467
} else if (sub->update_strategy.type != SM_UPDATE_UNSPECIFIED) {
1469-
trace_printf("loaded thing");
14701468
out->type = sub->update_strategy.type;
14711469
out->command = sub->update_strategy.command;
14721470
} else

0 commit comments

Comments
 (0)