Skip to content

Commit f0f90a8

Browse files
committed
print theme path in error message too
1 parent 1cb821c commit f0f90a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/style.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ impl Theme {
277277
let load_result = ron::de::from_reader(file);
278278

279279
if let Err(e) = &load_result {
280-
log::error!("theme loading error: {e}");
280+
log::error!("theme error [{:?}]: {e}", theme_path);
281281
}
282282

283283
Ok(load_result?)

0 commit comments

Comments
 (0)