Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/app/dev_fee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ use sqlx::SqlitePool;
use sqlx_crud::Crud;
use std::collections::HashSet;
use tokio::sync::mpsc::channel;
use tracing::{error, info, warn};
use tracing::{debug, error, info, warn};

// ── Public entry point ──────────────────────────────────────────────────

Expand Down Expand Up @@ -174,10 +174,12 @@ async fn cleanup_stale_pending_markers(pool: &SqlitePool) {
}

if stale_count > 0 {
warn!(
"Reset {} stale PENDING dev fee orders (TTL: {}s)",
info!(
"Stale PENDING cleanup completed: reset {} orders (TTL: {}s)",
stale_count, CLEANUP_TTL_SECS
);
} else {
debug!("Stale PENDING cleanup: no stale orders found");
}
}

Expand Down
Loading