mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-20 03:24:55 +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;
|
return readBytes;
|
||||||
|
|
||||||
} catch (IOException ex) {
|
} 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");
|
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);
|
throw new SevenZipException(msg, ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user