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:51:21 UTC

[logging-log4j2] branch release-2.x 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 release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new 7d1cded  LOG4J2-2894 - Fix spelling error in log line
7d1cded is described below

commit 7d1cded8e720f7ba20aa6102ec05b0bbf63ebc57
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Sat Aug 1 22:51:04 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 675f64d..7b1df79 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
@@ -195,7 +195,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 c159dd1..eaad7af 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -30,6 +30,9 @@
          - "remove" - Removed
     -->
     <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>