Logger.warn -> error
This commit is contained in:
parent
2de5f4c80b
commit
870f133273
@ -44,7 +44,7 @@ public class GenericTarDecompressor {
|
|||||||
|
|
||||||
while ((entry = archiveInputStream.getNextTarEntry()) != null) {
|
while ((entry = archiveInputStream.getNextTarEntry()) != null) {
|
||||||
if(!archiveInputStream.canReadEntryData(entry)) {
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ public class ZipDecompressor {
|
|||||||
|
|
||||||
while ((entry = zipInputStream.getNextZipEntry()) != null) {
|
while ((entry = zipInputStream.getNextZipEntry()) != null) {
|
||||||
if(!zipInputStream.canReadEntryData(entry)){
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user