Skip to content

Commit

Permalink
chore(advance-runner): adjust log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelstanley committed Aug 23, 2024
1 parent 60fbca5 commit a53e869
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions offchain/advance-runner/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ impl Runner {
.context(ProduceOutputsSnafu)?;
tracing::trace!("produced outputs in broker stream");

let dapp_address = rollups_claim.dapp_address.clone();
let claim = rollups_claim.clone();
self.broker
.produce_rollups_claim(rollups_claim)
.await
.context(ProduceClaimSnafu)?;
tracing::info!(
"produced epoch claim in broker stream for dapp address {:?}",
dapp_address
"produced epoch claim in broker stream: {:?}",
claim
);
}
Err(source) => {
Expand Down

0 comments on commit a53e869

Please sign in to comment.