Skip to content

Commit

Permalink
review: replace warn! with info! in prover init
Browse files Browse the repository at this point in the history
  • Loading branch information
SantiagoPittella committed Feb 24, 2025
1 parent d5ad673 commit a255cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/block-producer/src/batch_builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,12 +305,12 @@ pub enum BatchProver {

impl BatchProver {
pub fn new_local(security_level: u32) -> Self {
warn!(target: COMPONENT, "Using local batch prover");
info!(target: COMPONENT, "Using local batch prover");
Self::Local(LocalBatchProver::new(security_level))
}

pub fn new_remote(endpoint: impl Into<String>) -> Self {
warn!(target: COMPONENT, "Using remote batch prover");
info!(target: COMPONENT, "Using remote batch prover");
Self::Remote(RemoteBatchProver::new(endpoint))
}

Expand Down

0 comments on commit a255cc3

Please sign in to comment.