mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 17:08:21 +00:00
print theme file path in log with mesages
This commit is contained in:
parent
c119e6ae18
commit
5c98e2fe76
1 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue