mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +00:00
Changed some severe log entries to warnings
This commit is contained in:
parent
7d4acba66a
commit
a53e5bfd1e
@ -217,7 +217,7 @@ class ExtractIE extends Extract {
|
|||||||
try {
|
try {
|
||||||
final int bytesRead = cookiesFile.read(t, 0, cookiesFile.getSize());
|
final int bytesRead = cookiesFile.read(t, 0, cookiesFile.getSize());
|
||||||
} catch (TskCoreException ex) {
|
} catch (TskCoreException ex) {
|
||||||
logger.log(Level.SEVERE, "Error reading bytes of Internet Explorer cookie.", ex); //NON-NLS
|
logger.log(Level.WARNING, "Error reading bytes of Internet Explorer cookie.", ex); //NON-NLS
|
||||||
this.addErrorMessage(
|
this.addErrorMessage(
|
||||||
NbBundle.getMessage(this.getClass(), "ExtractIE.getCookie.errMsg.errReadingIECookie",
|
NbBundle.getMessage(this.getClass(), "ExtractIE.getCookie.errMsg.errReadingIECookie",
|
||||||
this.getName(), cookiesFile.getName()));
|
this.getName(), cookiesFile.getName()));
|
||||||
@ -320,7 +320,7 @@ class ExtractIE extends Extract {
|
|||||||
try {
|
try {
|
||||||
ContentUtils.writeToFile(indexFile, datFile);
|
ContentUtils.writeToFile(indexFile, datFile);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
logger.log(Level.SEVERE, "Error while trying to write index.dat file " + datFile.getAbsolutePath(), e); //NON-NLS
|
logger.log(Level.WARNING, "Error while trying to write index.dat file " + datFile.getAbsolutePath(), e); //NON-NLS
|
||||||
this.addErrorMessage(
|
this.addErrorMessage(
|
||||||
NbBundle.getMessage(this.getClass(), "ExtractIE.getHistory.errMsg.errWriteFile", this.getName(),
|
NbBundle.getMessage(this.getClass(), "ExtractIE.getHistory.errMsg.errWriteFile", this.getName(),
|
||||||
datFile.getAbsolutePath()));
|
datFile.getAbsolutePath()));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user