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 + ); } }