Logger.warn -> error

This commit is contained in:
szymon 2020-11-30 10:34:48 +01:00
parent 2de5f4c80b
commit 870f133273
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ public class GenericTarDecompressor {
while ((entry = archiveInputStream.getNextTarEntry()) != null) {
if(!archiveInputStream.canReadEntryData(entry)) {
Statics.LOGGER.warn("Something when wrong while trying to decompress {}", entry.getName());
Statics.LOGGER.error("Something when wrong while trying to decompress {}", entry.getName());
continue;
}

View File

@ -40,7 +40,7 @@ public class ZipDecompressor {
while ((entry = zipInputStream.getNextZipEntry()) != null) {
if(!zipInputStream.canReadEntryData(entry)){
Statics.LOGGER.warn("Something when wrong while trying to decompress {}", entry.getName());
Statics.LOGGER.error("Something when wrong while trying to decompress {}", entry.getName());
continue;
}