diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-06-22 13:25:03 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-06-22 13:25:03 +0000 |
commit | b46b69ab0f11c10dc70b8ec4688be422ae7396bf (patch) | |
tree | 2a2a18490ad93cccfd56f74739c11d6a60e38ef4 | |
parent | c7e2c6a531ff6f6edaa72d42762c390f3f6cfa46 (diff) | |
download | poi-b46b69ab0f11c10dc70b8ec4688be422ae7396bf.tar.gz poi-b46b69ab0f11c10dc70b8ec4688be422ae7396bf.zip |
[bug-66138] change log level to warn (the issue is worked around)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1902170 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/ZipPackage.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/ZipPackage.java b/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/ZipPackage.java index bf91ad17b0..a5930919d2 100644 --- a/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/ZipPackage.java +++ b/poi-ooxml/src/main/java/org/apache/poi/openxml4j/opc/ZipPackage.java @@ -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; |