Skip to content

Commit

Permalink
chore(authority-claimer): adjust log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelstanley committed Aug 23, 2024
1 parent a53e869 commit 85c1ccd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions offchain/authority-claimer/src/claimer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ where
.listen()
.await
.context(BrokerListenerSnafu)?;
debug!("Got a claim from the broker: {:?}", rollups_claim);
info!("Received claim from the broker: {:?}", rollups_claim);

let is_duplicated_rollups_claim = self
.duplicate_checker
Expand All @@ -108,7 +108,7 @@ where
continue;
}

info!("Sending a new rollups claim");
info!("Sending a new rollups claim transaction");
self.transaction_sender = self
.transaction_sender
.send_rollups_claim_transaction(rollups_claim)
Expand Down
4 changes: 2 additions & 2 deletions offchain/authority-claimer/src/listener.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl DefaultBrokerListener {
chain_id: u64,
dapp_address: Address,
) -> Result<Self, BrokerError> {
tracing::trace!("Connecting to the broker ({:?})", broker_config);
tracing::info!("Connecting to the broker ({:?})", broker_config);
let broker = Broker::new(broker_config).await?;
let dapp_metadata = DAppMetadata {
chain_id,
Expand Down Expand Up @@ -94,7 +94,7 @@ impl MultidappBrokerListener {
broker_config: BrokerConfig,
chain_id: u64,
) -> Result<Self, BrokerError> {
tracing::trace!(
tracing::info!(
"Connecting to the broker ({:?}) on multidapp mode",
broker_config
);
Expand Down
2 changes: 1 addition & 1 deletion offchain/authority-claimer/src/sender.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl TransactionSender for DefaultTransactionSender {
dapp_address,
})
.inc();
trace!("Claim transaction confirmed: `{:?}`", receipt);
info!("Claim transaction confirmed: `{:?}`", receipt);

Ok(Self { tx_manager, ..self })
}
Expand Down

0 comments on commit 85c1ccd

Please sign in to comment.