summaryrefslogtreecommitdiffstats
path: root/vendor/gix-index/src/init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-index/src/init.rs')
-rw-r--r--vendor/gix-index/src/init.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/gix-index/src/init.rs b/vendor/gix-index/src/init.rs
index abd71ffdd..9fe0b8e27 100644
--- a/vendor/gix-index/src/init.rs
+++ b/vendor/gix-index/src/init.rs
@@ -39,6 +39,7 @@ mod from_tree {
where
Find: for<'a> FnMut(&gix_hash::oid, &'a mut Vec<u8>) -> Option<TreeRefIter<'a>>,
{
+ let _span = gix_features::trace::coarse!("gix_index::State::from_tree()");
let mut buf = Vec::new();
let root = find(tree, &mut buf).ok_or(breadthfirst::Error::NotFound { oid: tree.into() })?;