From 2bdd5435b5ef8b5c740429256f294bef95ba92e9 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 8 May 2023 22:23:21 +0200 Subject: [PATCH] Change print to log info. --- compiler/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/lib.rs b/compiler/src/lib.rs index 15b653001..089b2b0f0 100644 --- a/compiler/src/lib.rs +++ b/compiler/src/lib.rs @@ -122,7 +122,7 @@ fn compile( let start = Instant::now(); log::info!("Evaluating fixed columns..."); let (constants, degree) = constant_evaluator::generate(analyzed); - println!("Took {}", start.elapsed().as_secs_f32()); + log::info!("Took {}", start.elapsed().as_secs_f32()); if analyzed.constant_count() == constants.len() { write_polys_file( &mut BufWriter::new(&mut fs::File::create(output_dir.join("constants.bin")).unwrap()),