We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde8d29 commit 5c38661Copy full SHA for 5c38661
site/src/load.rs
@@ -215,6 +215,7 @@ impl InputData {
215
trace!("loading files from directory");
216
217
// Read all files from repo_loc/processed
218
+ let latest_section_start = ::std::time::Instant::now();
219
for entry in fs::read_dir(repo_loc.join("times"))? {
220
let entry = entry?;
221
if entry.file_type()?.is_dir() {
@@ -270,7 +271,11 @@ impl InputData {
270
271
}
272
273
- info!("{} measured", data.len());
274
+ info!(
275
+ "{} commits/artifacts loaded in {:?}",
276
+ data.len(),
277
+ latest_section_start.elapsed()
278
+ );
279
280
let config = if let Ok(s) = fs::read_to_string("site-config.toml") {
281
toml::from_str(&s)?
0 commit comments