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 2019/06/16 21:15:18 UTC

[logging-log4j2] 01/02: (doc) List archived roll-over files by there age to clarify differences between fileIndex=min and fileIndex=max.

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

commit 34d3ececb5ee0bb9ec5a1afd1453168f03f8447c
Author: pazderski <pa...@askvisual.de>
AuthorDate: Mon Feb 11 13:23:55 2019 +0100

    (doc) List archived roll-over files by there age to clarify differences between
    fileIndex=min and fileIndex=max.
---
 src/site/asciidoc/manual/appenders.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/site/asciidoc/manual/appenders.adoc b/src/site/asciidoc/manual/appenders.adoc
index 9fdf961..43ec989 100644
--- a/src/site/asciidoc/manual/appenders.adoc
+++ b/src/site/asciidoc/manual/appenders.adoc
@@ -2791,15 +2791,15 @@ the other settings are the same the following actions will be performed.
 |1 |foo.log |foo-1.log |During the first rollover foo.log is renamed to
 foo-1.log. A new foo.log file is created and starts being written to.
 
-|2 |foo.log |foo-1.log, foo-2.log |During the second rollover foo.log is
+|2 |foo.log |foo-2.log, foo-1.log |During the second rollover foo.log is
 renamed to foo-2.log. A new foo.log file is created and starts being
 written to.
 
-|3 |foo.log |foo-1.log, foo-2.log, foo-3.log |During the third rollover
+|3 |foo.log |foo-3.log, foo-2.log, foo-1.log |During the third rollover
 foo.log is renamed to foo-3.log. A new foo.log file is created and
 starts being written to.
 
-|4 |foo.log |foo-1.log, foo-2.log, foo-3.log |In the fourth and
+|4 |foo.log |foo-3.log, foo-2.log, foo-1.log |In the fourth and
 subsequent rollovers, foo-1.log is deleted, foo-2.log is renamed to
 foo-1.log, foo-3.log is renamed to foo-2.log and foo.log is renamed to
 foo-3.log. A new foo.log file is created and starts being written to.