Skip to content

Commit 74a0760

Browse files
chore: move some logging to debug level (#1991)
1 parent 290c601 commit 74a0760

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/circuits/mod-builder/src/core_chip.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ impl<A> FieldExpressionExecutor<A> {
300300
opcode_flag_idx
301301
};
302302
assert_eq!(opcode_flag_idx.len(), local_opcode_idx.len() - 1);
303-
tracing::info!(
303+
tracing::debug!(
304304
"FieldExpressionCoreExecutor: opcode={name}, main_width={}",
305305
BaseAir::<BabyBear>::width(&expr)
306306
);

crates/vm/src/arch/vm.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ where
535535

536536
/// Calls [`VmState::initial`] but sets more information for
537537
/// performance metrics when feature "perf-metrics" is enabled.
538-
#[instrument(name = "vm.create_initial_state", skip_all)]
538+
#[instrument(name = "vm.create_initial_state", level = "debug", skip_all)]
539539
pub fn create_initial_state(
540540
&self,
541541
exe: &VmExe<Val<E::SC>>,
@@ -909,7 +909,7 @@ where
909909
})
910910
}
911911

912-
#[instrument(name = "vm.reset_state", skip_all)]
912+
#[instrument(name = "vm.reset_state", level = "debug", skip_all)]
913913
pub fn reset_state(&mut self, inputs: impl Into<Streams<Val<E::SC>>>) {
914914
self.state
915915
.as_mut()

0 commit comments

Comments
 (0)