diff --git a/consumer/src/solana.rs b/consumer/src/solana.rs index 7e58faa..a1ecbee 100644 --- a/consumer/src/solana.rs +++ b/consumer/src/solana.rs @@ -306,6 +306,12 @@ impl Solana { ClientErrorKind::TransactionError(_) | ClientErrorKind::SigningError(_) ) }) + .notify(|err: &ClientError, dur: Duration| { + error!( + "failed to send transaction retrying error {:?} in {:?}", + err, dur + ); + }) .await .map_err(|e| { let msg = format!("failed to send transaction: {e}");