print timing information

This commit is contained in:
rabite 2020-02-12 17:35:00 +01:00
parent 88515085cd
commit 3f66d7f7da
1 changed files with 6 additions and 0 deletions

View File

@ -294,6 +294,10 @@ impl FileListBuilder {
}
pub fn build(mut self) -> HResult<ListView<Files>> {
use std::time::Instant;
let now = Instant::now();
let c = &self.cache;
let s = self.stale.clone();
let core = self.core;
@ -341,6 +345,8 @@ impl FileListBuilder {
view.content.set_clean();
view.core.set_clean();
dbg!(now.elapsed().as_millis());
Ok(view)
}
}