Skip to content

Commit

Permalink
less intrusive error handling for #12833
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohedron committed Jan 9, 2025
1 parent 0c8d49c commit 41b9c95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -725,8 +725,8 @@ public void run() {
try {
TVFS.umount();
} catch (FsSyncException e) {
logger.fatal("Couldn't unmount zip files " + e, e);
MageFrame.getInstance().showErrorDialog("Couldn't unmount zip files " + e, e);
logger.error("Couldn't unmount zip files " + e, e);
// this is not a critical error - just need to run it again - see issue #12833
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public static void checkAndFixImageFiles() {
try {
TVFS.umount();
} catch (FsSyncException e) {
LOGGER.fatal("Couldn't unmount zip files on searching broken images " + e, e);
LOGGER.error("Couldn't unmount zip files on searching broken images " + e, e);
}

// real images check is slow, so it used on images download only (not here)
Expand Down

0 comments on commit 41b9c95

Please sign in to comment.