added exception handling

This commit is contained in:
Eugene Livis 2014-10-21 15:06:05 -04:00
parent 46133acd77
commit e48110fe0a

View File

@ -279,7 +279,8 @@ public final class SevenZipIngestModule implements FileIngestModule {
detectedFormat = attribute.getValueString();
break;
}
} catch (TskCoreException ex) {
} catch (TskCoreException ex) {
logger.log(Level.WARNING, "Couldn't obtain file attributes for file: " + archiveFile.toString(), ex);
}
if (detectedFormat == null) {