Less loud warning when loading old memories

This commit is contained in:
Emil Ernerfeldt 2023-09-26 21:29:04 +02:00
parent dff52eddfd
commit 1b830bbcb4
1 changed files with 2 additions and 1 deletions

View File

@ -1164,7 +1164,8 @@ pub fn get_value<T: serde::de::DeserializeOwned>(storage: &dyn Storage, key: &st
.and_then(|value| match ron::from_str(&value) {
Ok(value) => Some(value),
Err(err) => {
log::warn!("Failed to decode RON: {err}");
// This happens on when we break the format, e.g. when updating egui.
log::debug!("Failed to decode RON: {err}");
None
}
})