diff --git a/CHANGELOG.md b/CHANGELOG.md index e07990c421..de6f53617d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ Both branches support Stwo prover opcodes (Blake2s, QM31) since v2.0.0. --- #### Upcoming Changes +* fix: decrease spamming logs level to trace [#2385](https://github.com/starkware-libs/cairo-vm/pull/2385) + * feat: add `test_helpers` module (`error_utils`, `test_utils`) with `assert_mr_eq`, `load_cairo_program!` macro and `expect_*` error checkers, behind `test_utils` feature flag [#2381](https://github.com/starkware-libs/cairo-vm/pull/2381) * feat(makefile,ci): add `cairo_test_suite_programs` Makefile target and CI integration to compile Cairo test suite programs before running tests [#2380](https://github.com/starkware-libs/cairo-vm/pull/2380) diff --git a/vm/src/vm/runners/cairo_runner.rs b/vm/src/vm/runners/cairo_runner.rs index c48e0e5d58..2c43a3c771 100644 --- a/vm/src/vm/runners/cairo_runner.rs +++ b/vm/src/vm/runners/cairo_runner.rs @@ -57,7 +57,7 @@ use super::{ cairo_pie::{self, CairoPie, CairoPieMetadata, CairoPieVersion}, }; use crate::types::instance_definitions::mod_instance_def::ModInstanceDef; -use tracing::info; +use tracing::{info, trace}; pub const ORDERED_BUILTIN_LIST: &[BuiltinName] = &[ BuiltinName::output, @@ -1004,7 +1004,7 @@ impl CairoRunner { return Err(RunnerError::EndRunCalledTwice.into()); } - info!("Relocating memory."); + trace!("Relocating memory."); self.vm.segments.memory.relocate_memory()?; self.vm.end_run(&self.exec_scopes, fill_holes)?; @@ -1012,7 +1012,7 @@ impl CairoRunner { return Ok(()); } - info!("Computing effective sizes of segments."); + trace!("Computing effective sizes of segments."); self.vm.segments.compute_effective_sizes(); if self.is_proof_mode() && !disable_trace_padding { info!("in proof mode and enabling trace padding, running until next power of 2.");