]> source.dussan.org Git - poi.git/commitdiff
add space in log message
authorPJ Fanning <fanningpj@apache.org>
Thu, 24 Feb 2022 21:38:05 +0000 (21:38 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 24 Feb 2022 21:38:05 +0000 (21:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898395 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/util/XMLHelper.java

index a2c03a5e3ebbe444c9e45233caece8e5647a5f91..e584762c21ac15db239253ef3c1e4505d203c5c5 100644 (file)
@@ -303,7 +303,7 @@ public final class XMLHelper {
 
     private static void logThrowable(Throwable t, String message, String name) {
         if (System.currentTimeMillis() > lastLog + TimeUnit.MINUTES.toMillis(5)) {
-            LOG.atWarn().withThrowable(t).log("{} [log suppressed for 5 minutes]{}", message, name);
+            LOG.atWarn().withThrowable(t).log("{} [log suppressed for 5 minutes] {}", message, name);
             lastLog = System.currentTimeMillis();
         }
     }