From 34f5e8105df062f1ba783a61584d868a9d2984a4 Mon Sep 17 00:00:00 2001 From: howardwu Date: Wed, 24 Feb 2021 19:49:00 -0800 Subject: [PATCH] Prints out number of constraints from now on --- leo/commands/build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leo/commands/build.rs b/leo/commands/build.rs index c826157696..61148e466f 100644 --- a/leo/commands/build.rs +++ b/leo/commands/build.rs @@ -134,8 +134,8 @@ impl Command for Build { let temporary_program = program.clone(); let output = temporary_program.compile_constraints(&mut cs)?; - tracing::debug!("Compiled constraints - {:#?}", output); - tracing::debug!("Number of constraints - {:#?}", cs.num_constraints()); + tracing::info!("Compiled constraints - {:#?}", output); + tracing::info!("Number of constraints - {:#?}", cs.num_constraints()); // Serialize the circuit let circuit_object = SerializedCircuit::from(cs);