Lessened the severity of log message.

This commit is contained in:
U-BASIS\dgrove 2018-12-13 01:14:41 -05:00
parent abe7a9d4c9
commit 93ec4fa1b3

View File

@ -235,9 +235,12 @@ public class EamArtifactUtil {
TskData.FileKnown.UNKNOWN,
bbSourceFile.getId());
} catch (TskCoreException | EamDbException | CorrelationAttributeNormalizationException ex) {
} catch (TskCoreException | EamDbException ex) {
logger.log(Level.SEVERE, "Error creating artifact instance.", ex); // NON-NLS
return null;
} catch (CorrelationAttributeNormalizationException ex) {
logger.log(Level.WARNING, "Error creating artifact instance.", ex.getMessage()); // NON-NLS
return null;
} catch (NoCurrentCaseException ex) {
logger.log(Level.SEVERE, "Case is closed.", ex); // NON-NLS
return null;