From 21933b454cb525fec252ba2dbc10df6ffcebe4c8 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 18 Aug 2025 06:00:29 +0300 Subject: [PATCH] change debug level to info --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2bc7afc..c76eff9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -186,7 +186,7 @@ async fn main() -> Result<()> { ) .await { - log::debug!( + log::info!( "skip awaiting the completion of preload `{h}` data (`{e}`), ban until {}.", ban.add(i) ); @@ -206,22 +206,22 @@ async fn main() -> Result<()> { session .delete(librqbit::api::TorrentIdOrHash::Id(id), false) .await?; // torrent data was moved on commit; there's no sense in keeping it - log::debug!("torrent `{h}` resolved.") + log::info!("torrent `{h}` resolved.") } Ok(_) => panic!(), - Err(e) => log::debug!( + Err(e) => log::info!( "failed to resolve torrent `{h}`: `{e}`, ban until {}.", ban.add(i) ), }, - Err(e) => log::debug!( + Err(e) => log::info!( "skip awaiting the completion of adding torrent `{h}` data (`{e}`), ban until {}.", ban.add(i) ), } } } - log::debug!( + log::info!( "queue completed at {time_queue} (time: {} / uptime: {} / banned: {}) await {} seconds to continue...", Local::now() .signed_duration_since(time_queue)