From 189965309f6385b6229d5e70536cddac668f06ac Mon Sep 17 00:00:00 2001 From: Caspian Ahlberg Date: Tue, 17 Sep 2024 16:56:27 +0100 Subject: [PATCH] Add some quotes --- src/utility_types/continually_updated.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utility_types/continually_updated.rs b/src/utility_types/continually_updated.rs index 5e303e3..fa16b8f 100644 --- a/src/utility_types/continually_updated.rs +++ b/src/utility_types/continually_updated.rs @@ -100,7 +100,7 @@ impl ContinuallyUpdated { } if let Some(err) = error { - log::error!("Updating the {} data on this iteration failed. Error: '{err}'.", self.name); + log::error!("Updating the '{}' data on this iteration failed. Error: '{err}'.", self.name); self.run_new_update_iteration(param)?; return Ok(false); }