mirror of https://github.com/bobwen-dev/hunter
print timing information
This commit is contained in:
parent
88515085cd
commit
3f66d7f7da
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue