From 9f89f0e0895ddc2b49c614af129322f69f985bdd Mon Sep 17 00:00:00 2001 From: Facundo Date: Thu, 13 Jun 2024 14:47:33 +0100 Subject: [PATCH] chore(avm): add bytecode size metrics (#7042) --- aztec/src/context/private_context.nr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aztec/src/context/private_context.nr b/aztec/src/context/private_context.nr index 181d5d6..8d02ab3 100644 --- a/aztec/src/context/private_context.nr +++ b/aztec/src/context/private_context.nr @@ -193,10 +193,10 @@ impl PrivateContext { } pub fn end_setup(&mut self) { - dep::protocol_types::debug_log::debug_log_format( - "Ending setup at counter {0}", - [self.side_effect_counter as Field] - ); + // dep::protocol_types::debug_log::debug_log_format( + // "Ending setup at counter {0}", + // [self.side_effect_counter as Field] + // ); self.min_revertible_side_effect_counter = self.side_effect_counter; }