less intrusive error handling for #12833

This commit is contained in:
xenohedron 2025-01-08 22:47:01 -05:00
parent 0c8d49ce56
commit 41b9c95be9
2 changed files with 3 additions and 3 deletions

View file

@ -725,8 +725,8 @@ public class DownloadPicturesService extends DefaultBoundedRangeModel implements
try { try {
TVFS.umount(); TVFS.umount();
} catch (FsSyncException e) { } catch (FsSyncException e) {
logger.fatal("Couldn't unmount zip files " + e, e); logger.error("Couldn't unmount zip files " + e, e);
MageFrame.getInstance().showErrorDialog("Couldn't unmount zip files " + e, e); // this is not a critical error - just need to run it again - see issue #12833
} }
} }

View file

@ -185,7 +185,7 @@ public final class CardImageUtils {
try { try {
TVFS.umount(); TVFS.umount();
} catch (FsSyncException e) { } 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) // real images check is slow, so it used on images download only (not here)