add space in log message

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-02-24 21:38:05 +00:00
parent 70b5750228
commit 1e9d318a80
1 changed files with 1 additions and 1 deletions

View 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();
}
}