remove debug prints

pull/8675/merge^2
Matt Paras 2025-04-27 11:42:15 -05:00
parent e684c7db1b
commit 5c6620b465
1 changed files with 0 additions and 2 deletions

View File

@ -141,11 +141,9 @@ impl ScriptingEngine {
} }
pub fn generate_sources() { pub fn generate_sources() {
let now = std::time::Instant::now();
for kind in PLUGIN_PRECEDENCE { for kind in PLUGIN_PRECEDENCE {
manual_dispatch!(kind, generate_sources()) manual_dispatch!(kind, generate_sources())
} }
println!("Time taken: {:?}", now.elapsed());
} }
} }