Skip to content

Commit 1aa7705

Browse files
committed
set maestro max retries drop log to warn
1 parent 3cfb1f1 commit 1aa7705

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synd-maestro/src/valkey/streams/producer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use shared::tracing::{current_traceparent, SpanKind};
99
use std::{self, sync::Arc, time::Duration};
1010
use tokio::{sync::Mutex, task::JoinHandle, time::MissedTickBehavior};
1111
use tokio_util::sync::CancellationToken;
12-
use tracing::{debug, error, info, instrument, trace};
12+
use tracing::{debug, error, info, instrument, trace, warn};
1313

1414
/// Base key for Valkey transaction streams
1515
/// Format: `synd-maestro:transactions:{chain_id}`
@@ -213,7 +213,7 @@ impl StreamProducer {
213213
error!(%stream_key, %max_id, %e, failed_ids = ids.join(", "), "Finalization checker: Failed to delete finalized transaction entries");
214214
return Err(e);
215215
}
216-
trace!(%stream_key, %max_id, count = ids.len(), "Finalization checker: Deleted entries");
216+
warn!(%stream_key, %max_id, count = ids.len(), "Finalization checker: Deleted entries");
217217
Ok(entries)
218218
}
219219

0 commit comments

Comments
 (0)