Skip to content

Commit

Permalink
fix: set dispatcher log to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoura authored and marcelstanley committed Oct 26, 2023
1 parent 2e7dd49 commit 842ce71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions offchain/dispatcher/src/dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use eth_state_client_lib::StateServer;
use eth_state_fold_types::{Block, BlockStreamItem};
use rollups_events::{Address, DAppMetadata};
use tokio_stream::StreamExt;
use tracing::{error, info, instrument, trace, warn};
use tracing::{error, instrument, trace, warn};
use types::foldables::authority::rollups::{RollupsInitialState, RollupsState};

use crate::{
Expand All @@ -25,7 +25,7 @@ pub async fn start(
config: DispatcherConfig,
metrics: DispatcherMetrics,
) -> Result<(), DispatcherError> {
info!("Setting up dispatcher");
trace!("Setting up dispatcher");

let dapp_metadata = DAppMetadata {
chain_id: config.tx_config.chain_id,
Expand Down

0 comments on commit 842ce71

Please sign in to comment.