mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +00:00
Merge pull request #5580 from APriestman/5939_embeddedFileExtractorFixes
5939 SevenZip - Change severe message to warning
This commit is contained in:
commit
d737fdb42b
@ -85,8 +85,9 @@ class SevenZipContentReadStream implements IInStream {
|
||||
return readBytes;
|
||||
|
||||
} catch (IOException ex) {
|
||||
// This is only a warning because the file may be deleted or otherwise corrupt
|
||||
String msg = NbBundle.getMessage(this.getClass(), "SevenZipContentReadStream.read.exception.errReadStream");
|
||||
logger.log(Level.SEVERE, msg, ex);
|
||||
logger.log(Level.WARNING, msg, ex);
|
||||
throw new SevenZipException(msg, ex);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user