aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarius Volkhart <mariusvolkhart@apache.org>2021-03-16 11:37:56 +0000
committerMarius Volkhart <mariusvolkhart@apache.org>2021-03-16 11:37:56 +0000
commit393d3a3ce98b06560b3e6cd0fb4d0ce60f355eaa (patch)
tree7e520eb0e7598587645965976634718f7618c63d /src
parent7359d4cee7c382692ce23caf8f0bfb4f55d30972 (diff)
downloadpoi-393d3a3ce98b06560b3e6cd0fb4d0ce60f355eaa.tar.gz
poi-393d3a3ce98b06560b3e6cd0fb4d0ce60f355eaa.zip
Revert erroneously modified logging statement
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1887717 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/poi/POIDocument.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/org/apache/poi/POIDocument.java b/src/java/org/apache/poi/POIDocument.java
index 2a2c1acd92..519da97e3a 100644
--- a/src/java/org/apache/poi/POIDocument.java
+++ b/src/java/org/apache/poi/POIDocument.java
@@ -167,7 +167,7 @@ public abstract class POIDocument implements Closeable {
} else if (ps != null) {
LOG.atWarn().log("{} property set came back with wrong class - {}", localName, ps.getClass().getName());
} else {
- LOG.atWarn().log("{} property set came back as null {}", localName, box(5));
+ LOG.atWarn().log("{} property set came back as null", localName);
}
} catch (IOException e) {
LOG.atError().withThrowable(e).log("can't retrieve property set");