diff options
Diffstat (limited to 'bundle-uri.c')
| -rw-r--r-- | bundle-uri.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bundle-uri.c b/bundle-uri.c index eb8eca078b..4b1a2e2937 100644 --- a/bundle-uri.c +++ b/bundle-uri.c @@ -12,6 +12,7 @@ #include "config.h" #include "fetch-pack.h" #include "remote.h" +#include "trace2.h" #include "object-store-ll.h" static struct { @@ -799,6 +800,8 @@ int fetch_bundle_uri(struct repository *r, const char *uri, .id = xstrdup(""), }; + trace2_region_enter("fetch", "fetch-bundle-uri", the_repository); + init_bundle_list(&list); /* @@ -824,6 +827,7 @@ cleanup: for_all_bundles_in_list(&list, unlink_bundle, NULL); clear_bundle_list(&list); clear_remote_bundle_info(&bundle, NULL); + trace2_region_leave("fetch", "fetch-bundle-uri", the_repository); return result; } |
