tool: don't silently ignore generations

This commit is contained in:
Julian Stecklina 2023-04-23 15:18:25 +02:00
parent be458e3385
commit 4f182704e0
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ impl Installer {
// Ignore failing to read a generation so that old malformed generations do not stop // Ignore failing to read a generation so that old malformed generations do not stop
// lzbt from working. // lzbt from working.
if let Err(e) = &generation_result { if let Err(e) = &generation_result {
log::debug!( log::warn!(
"Ignoring generation {} because it's malformed: {e:#}", "Ignoring generation {} because it's malformed: {e:#}",
link.version link.version
); );