mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-28 23:32:41 +00:00
index: add tracing output to "jj debug reindex" path
This commit is contained in:
parent
062f7a252b
commit
8652bae925
1 changed files with 11 additions and 1 deletions
|
@ -103,6 +103,7 @@ impl DefaultIndexStore {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tracing::instrument(skip(self, store))]
|
||||||
fn index_at_operation(
|
fn index_at_operation(
|
||||||
&self,
|
&self,
|
||||||
store: &Arc<Store>,
|
store: &Arc<Store>,
|
||||||
|
@ -145,6 +146,11 @@ impl DefaultIndexStore {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tracing::info!(
|
||||||
|
?maybe_parent_file,
|
||||||
|
new_heads_count = new_heads.len(),
|
||||||
|
"indexing commits reachable from historical heads"
|
||||||
|
);
|
||||||
let mut heads = new_heads.into_iter().collect_vec();
|
let mut heads = new_heads.into_iter().collect_vec();
|
||||||
heads.sort();
|
heads.sort();
|
||||||
let commits = topo_order_earlier_first(store, heads, maybe_parent_file);
|
let commits = topo_order_earlier_first(store, heads, maybe_parent_file);
|
||||||
|
@ -154,8 +160,12 @@ impl DefaultIndexStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
let index_file = data.save_in(self.dir.clone())?;
|
let index_file = data.save_in(self.dir.clone())?;
|
||||||
|
|
||||||
self.associate_file_with_operation(&index_file, operation.id())?;
|
self.associate_file_with_operation(&index_file, operation.id())?;
|
||||||
|
tracing::info!(
|
||||||
|
?index_file,
|
||||||
|
commits_count = commits.len(),
|
||||||
|
"saved new index file"
|
||||||
|
);
|
||||||
|
|
||||||
Ok(index_file)
|
Ok(index_file)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue