Skip to content

Commit 0f9f94f

Browse files
committed
feat: update log
1 parent 80e88a4 commit 0f9f94f

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

rust/main/lander/src/dispatcher/stages/inclusion_stage.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,10 @@ impl InclusionStage {
197197
};
198198
loop {
199199
tokio::time::sleep(poll_rate).await;
200-
tracing::debug!(domain, "Checking for any payloads needs reprocessing");
200+
tracing::debug!(
201+
domain,
202+
"Checking for any transactions that needs reprocessing"
203+
);
201204

202205
let txs = match state.adapter.get_reprocess_txs().await {
203206
Ok(s) => s,
@@ -207,8 +210,8 @@ impl InclusionStage {
207210
continue;
208211
}
209212

213+
tracing::debug!(?txs, "Reprocessing transactions");
210214
let mut locked_pool = pool.lock().await;
211-
212215
for tx in txs {
213216
locked_pool.insert(tx.uuid.clone(), tx);
214217
}

0 commit comments

Comments
 (0)