Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrolich committed Apr 3, 2024
1 parent 0f2e450 commit f951396
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,11 @@ pub fn incremental_build(build_state: &mut BuildState, default_timing: Option<Du
);

// print all the compile_dirty modules
for (module_name, module) in build_state.modules.iter() {
if module.compile_dirty {
println!("compile dirty: {}", module_name);
}
}
// for (module_name, module) in build_state.modules.iter() {
// if module.compile_dirty {
// println!("compile dirty: {}", module_name);
// }
// }

let start_compiling = Instant::now();
let pb = ProgressBar::new(build_state.modules.len().try_into().unwrap());
Expand Down

0 comments on commit f951396

Please sign in to comment.