Skip to content

Commit 5c98e2f

Browse files
committed
print theme file path in log with mesages
1 parent c119e6a commit 5c98e2f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/ui/style.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,15 @@ impl Theme {
288288
theme = old_theme;
289289

290290
if theme.save_patch(theme_path).is_ok() {
291-
log::info!("Converted old theme to new format.");
291+
log::info!(
292+
"Converted old theme to new format. ({:?})",
293+
theme_path
294+
);
292295
} else {
293-
log::warn!("Failed to save theme in new format.");
296+
log::warn!(
297+
"Failed to save theme in new format. ({:?})",
298+
theme_path
299+
);
294300
}
295301
}
296302

0 commit comments

Comments
 (0)