mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
less intrusive error handling for #12833
This commit is contained in:
parent
0c8d49ce56
commit
41b9c95be9
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue