]> source.dussan.org Git - poi.git/commitdiff
[bug-66138] change log level to warn (the issue is worked around)
authorPJ Fanning <fanningpj@apache.org>
Wed, 22 Jun 2022 13:25:03 +0000 (13:25 +0000)
committerPJ Fanning <fanningpj@apache.org>
Wed, 22 Jun 2022 13:25:03 +0000 (13:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902170 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/ZipPackage.java

index bf91ad17b07b56be9a831be787d1618c4bad46fe..a5930919d28181ca9e07bf26388eee483750a4cd 100644 (file)
@@ -171,7 +171,7 @@ public final class ZipPackage extends OPCPackage {
                 throw new InvalidOperationException("Can't open the specified file: '" + file + "'", e);
             }
 
-            LOG.atError().log("Error in zip file {} - falling back to stream processing (i.e. ignoring zip central directory)", file);
+            LOG.atWarn().log("Error in zip file {} - falling back to stream processing (i.e. ignoring zip central directory)", file);
             ze = openZipEntrySourceStream(file);
         }
         this.zipArchive = ze;