summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/style.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ui/style.rs b/src/ui/style.rs
index 1139cfe7..de282910 100644
--- a/src/ui/style.rs
+++ b/src/ui/style.rs
@@ -288,9 +288,15 @@ impl Theme {
theme = old_theme;
if theme.save_patch(theme_path).is_ok() {
- log::info!("Converted old theme to new format.");
+ log::info!(
+ "Converted old theme to new format. ({:?})",
+ theme_path
+ );
} else {
- log::warn!("Failed to save theme in new format.");
+ log::warn!(
+ "Failed to save theme in new format. ({:?})",
+ theme_path
+ );
}
}