From 18db12dad3d655a51a5eed50413615303e155027 Mon Sep 17 00:00:00 2001 From: yggverse Date: Mon, 18 Aug 2025 17:46:57 +0300 Subject: [PATCH] update debug messages --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index c05942f..1f78a36 100644 --- a/src/main.rs +++ b/src/main.rs @@ -190,7 +190,7 @@ async fn main() -> Result<()> { .await { log::info!( - "skip awaiting the completion of preload `{h}` data (`{e}`), ban {}.", + "skip awaiting the completion of preload torrent data for `{h}` (`{e}`), ban {}.", match ban.add(i, false) { Some(t) => format!("until {t}"), None => "permanently".into(), // @TODO feature, do not unwrap @@ -224,7 +224,7 @@ async fn main() -> Result<()> { ), }, Err(e) => log::info!( - "skip awaiting the completion of adding torrent `{h}` data (`{e}`), ban {}.", + "skip awaiting the completion of adding torrent `{h}` (`{e}`), ban {}.", match ban.add(i, false) { Some(t) => format!("until {t}"), None => "permanently".into(), // @TODO feature, do not unwrap