summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2024-02-19 21:35:26 +0100
committerextrawurst <mail@rusticorn.com>2024-02-19 21:35:26 +0100
commitf0f90a88f1e9b72dd1da015cfc973fe639320246 (patch)
tree785ff9f2ee2b223e97828a21d3187b1afbaa53ba /src
parent1cb821cd514a734d7d37e50371ab7b8bc9e7aef1 (diff)
print theme path in error message too
Diffstat (limited to 'src')
-rw-r--r--src/ui/style.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/style.rs b/src/ui/style.rs
index b3ba1b91..b86c2d6f 100644
--- a/src/ui/style.rs
+++ b/src/ui/style.rs
@@ -277,7 +277,7 @@ impl Theme {
let load_result = ron::de::from_reader(file);
if let Err(e) = &load_result {
- log::error!("theme loading error: {e}");
+ log::error!("theme error [{:?}]: {e}", theme_path);
}
Ok(load_result?)