Fix logging in corecomponents.Installer

This commit is contained in:
Richard Cordovano 2016-01-28 17:00:44 -05:00
parent 1d56106d6e
commit 23a6618bb2

View File

@ -107,8 +107,8 @@ public class Installer extends ModuleInstall {
if (Case.isCaseOpen()) {
Case.getCurrentCase().closeCase();
}
} catch (CaseActionException | IllegalStateException ignored) {
// Exception already logged. Shutting down, no need to do popup.
} catch (CaseActionException | IllegalStateException ex) {
logger.log(Level.SEVERE, "Error closing case", ex); //NON-NLS
}
}).start();
}