Chore: change text of an error

This commit is contained in:
Denis Benato
2026-01-13 20:14:45 +01:00
parent d05182ae64
commit ff103f98af

View File

@@ -213,7 +213,10 @@ impl crate::Reloadable for AsusArmouryAttribute {
self.attr self.attr
.set_current_value(&AttrValue::Integer(*saved_value)) .set_current_value(&AttrValue::Integer(*saved_value))
.map_err(|e| { .map_err(|e| {
error!("Could not set {} value: {e:?}", self.attr.name()); error!(
"Error restoring armoury setting {}: {e:?}",
self.attr.name()
);
self.attr.base_path_exists(); self.attr.base_path_exists();
e e
})?; })?;