Skip to content

Commit

Permalink
log level downgrade (#14399)
Browse files Browse the repository at this point in the history
  • Loading branch information
zjma authored Oct 7, 2024
1 parent 4bed99d commit 87cbef7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions consensus/src/epoch_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1077,15 +1077,15 @@ impl<P: OnChainConfigProvider> EpochManager<P> {
let dkg_state = payload.get::<DKGState>();

if let Err(error) = &onchain_consensus_config {
error!("Failed to read on-chain consensus config {}", error);
warn!("Failed to read on-chain consensus config {}", error);
}

if let Err(error) = &onchain_execution_config {
error!("Failed to read on-chain execution config {}", error);
warn!("Failed to read on-chain execution config {}", error);
}

if let Err(error) = &randomness_config_move_struct {
error!("Failed to read on-chain randomness config {}", error);
warn!("Failed to read on-chain randomness config {}", error);
}

self.epoch_state = Some(epoch_state.clone());
Expand Down

0 comments on commit 87cbef7

Please sign in to comment.