print theme file path in log with mesages

This commit is contained in:
extrawurst 2023-06-25 14:14:57 +02:00
parent c119e6ae18
commit 5c98e2fe76

View file

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