From 4f182704e0bf35d4553ac2812f91868de2a3fd2e Mon Sep 17 00:00:00 2001 From: Julian Stecklina Date: Sun, 23 Apr 2023 15:18:25 +0200 Subject: [PATCH] tool: don't silently ignore generations --- rust/tool/src/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/tool/src/install.rs b/rust/tool/src/install.rs index e74d130..b41841b 100644 --- a/rust/tool/src/install.rs +++ b/rust/tool/src/install.rs @@ -172,7 +172,7 @@ impl Installer { // Ignore failing to read a generation so that old malformed generations do not stop // lzbt from working. if let Err(e) = &generation_result { - log::debug!( + log::warn!( "Ignoring generation {} because it's malformed: {e:#}", link.version );