From ea0d2b4c671798a714268e14e6459cb58360567d Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 13 Aug 2025 19:24:34 +0300 Subject: [PATCH] reorder debug message position --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 556ad7f..cc9d0da 100644 --- a/src/main.rs +++ b/src/main.rs @@ -180,13 +180,13 @@ async fn main() -> Result<()> { ) .await { - session - .delete(librqbit::api::TorrentIdOrHash::Id(id), false) - .await?; // * do not collect billions of slow torrents in the session pool log::debug!( "skip awaiting the completion of preload `{h}` data (`{e}`), ban until {}.", ban.add(i) ); + session + .delete(librqbit::api::TorrentIdOrHash::Id(id), false) + .await?; // * do not collect billions of slow torrents in the session pool continue; } log::debug!("torrent `{h}` preload completed.");