fix: promote worker event logs from debug to info

This commit is contained in:
2026-05-17 12:02:13 +02:00
parent 2c34eb44e4
commit be0924d463
2 changed files with 4 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ impl OutboxRelay {
.execute(&mut *tx)
.await?;
tx.commit().await?;
tracing::debug!(seq = row.seq, event_type = row.event_type, "outbox: delivered");
tracing::info!(seq = row.seq, event_type = row.event_type, "outbox: delivered");
}
Err(e) => {
tracing::warn!(seq = row.seq, "outbox: publish failed (will retry): {e}");