Change log level from SEVERE to WARNING.

This commit is contained in:
esaunders 2020-07-07 12:25:47 -04:00
parent a66c800c49
commit 965ec97dba

View File

@ -62,7 +62,7 @@ public final class TextFileExtractor implements TextExtractor {
encoding = StandardCharsets.UTF_8; encoding = StandardCharsets.UTF_8;
} }
} catch (TskCoreException | IOException ex) { } catch (TskCoreException | IOException ex) {
logger.log(Level.SEVERE, String.format("Error detecting the " logger.log(Level.WARNING, String.format("Error detecting the "
+ "encoding for %s (objID=%d)", file.getName(), file.getId()), ex); + "encoding for %s (objID=%d)", file.getName(), file.getId()), ex);
encoding = StandardCharsets.UTF_8; encoding = StandardCharsets.UTF_8;
} }