From ff103f98afc3f9c97409fe7f95528ab173ba6960 Mon Sep 17 00:00:00 2001 From: Denis Benato Date: Tue, 13 Jan 2026 20:14:45 +0100 Subject: [PATCH] Chore: change text of an error --- asusd/src/asus_armoury.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/asusd/src/asus_armoury.rs b/asusd/src/asus_armoury.rs index 1bcd63ea..67c86d34 100644 --- a/asusd/src/asus_armoury.rs +++ b/asusd/src/asus_armoury.rs @@ -213,7 +213,10 @@ impl crate::Reloadable for AsusArmouryAttribute { self.attr .set_current_value(&AttrValue::Integer(*saved_value)) .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(); e })?;