You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2020/08/02 05:50:54 UTC

[logging-log4j2] branch master updated: LOG4J2-2894 - Fix spelling error in log line

This is an automated email from the ASF dual-hosted git repository.

rgoers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new 842c21e  LOG4J2-2894 - Fix spelling error in log line
842c21e is described below

commit 842c21e611b1f113d160d7f3aeaf3114156b09cb
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Sat Aug 1 22:50:40 2020 -0700

    LOG4J2-2894 - Fix spelling error in log line
---
 .../main/java/org/apache/logging/log4j/core/appender/FileManager.java  | 2 +-
 src/changes/changes.xml                                                | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/FileManager.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/FileManager.java
index 7359e5b..85eb689 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/FileManager.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/appender/FileManager.java
@@ -146,7 +146,7 @@ public class FileManager extends OutputStreamManager {
                 FileTime now = FileTime.fromMillis(System.currentTimeMillis());
                 Files.setAttribute(file.toPath(), "creationTime", now);
             } catch (Exception ex) {
-                LOGGER.warn("Unable to set current file tiem for {}", filename);
+                LOGGER.warn("Unable to set current file time for {}", filename);
             }
             writeHeader(fos);
         }
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ead2719..a22f70e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -181,6 +181,9 @@
       </action>
     </release>
     <release version="2.14.0" date="2020-MM-DD" description="GA Release 2.14.0">
+      <action issue="LOG4J2-2894" dev="rgoers" type="fix">
+        Fix spelling error in log message.
+      </action>
       <action issue="LOG4J2-2901" dev="rgoers" type="fix">
         Missing configuration files should be ignored when creating a composite configuration.
       </action>