[
https://issues.apache.org/jira/browse/LOG4J2-2591?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16871425#comment-16871425
]
Ralph Goers commented on LOG4J2-2591:
-------------------------------------
With the configuration above logs should iniitally be written to mtrace.log. If
mtrace.log was created on June 1, 2019 then mtrace.log would be renamed to
logs/2019-06/mtrace-2019-06-01.log. A new mtrace.log should then be created and
start being written to. However, due to the problem identified by LOG4J2-2610
the new mtrace.log will have the same creation time as the previous mtrace.log
on Windows and when a rollover occurs it will overwrite the previous
mtrace-2019-06-01.log. As I indicated in my prior response, that has been
fixed and is available for testing in our release-2.x branch. A vote has been
started for the 2.12.0 release which contains that fix. You can either verify
that the fix works now by testing with a SNAPSHOT build or wait for the release
vote to be finished and the artifacts to be publicly available.
> RollingFileAppender don't append log file after restart service.
> ----------------------------------------------------------------
>
> Key: LOG4J2-2591
> URL: https://issues.apache.org/jira/browse/LOG4J2-2591
> Project: Log4j 2
> Issue Type: Bug
> Components: Appenders
> Affects Versions: 2.11.2
> Environment: Windows Server 2008 R2 & Windows 10
> OpenJDK Runtime Environment 11.0.2
> Java 11
> Reporter: Philipp Fels
> Priority: Major
> Labels: 11.0.2, Java, Windows
>
> The RollingFileAppender dosn't append to the current log file after restart
> of Service at Windows.
> At UNIX Systems it works as expected.
> Our log4j2 Configuration:
>
> {code:java}
> <?xml version="1.0" encoding="UTF-8"?>
> <Configuration status="WARN"
> packages="de.uplanet.lucy.server.portalserver.messages"
> shutdownHook="disable">
> <Properties>
> <Property name="de.uplanet.lucy.logPath">log</Property>
> </Properties>
> <Appenders>
> <!-- File appender configuration (daily rotation) -->
> <RollingFile name="DailyFile"
> fileName="${sys:de.uplanet.lucy.logPath}/portal.log"
> filePattern="${sys:de.uplanet.lucy.logPath}/portal.%d{yyyy-MM-dd}.log">
> <PatternLayout>
> <pattern>%-5p %d{ISO8601}{UTC}Z - %c[%t]%n %m%n</pattern>
> </PatternLayout>
> <Policies>
> <TimeBasedTriggeringPolicy interval="1"/>
> </Policies>
> <ThresholdFilter level="DEBUG" onMatch="ACCEPT"
> onMismatch="DENY"/>
> </RollingFile>
> <Loggers>
> <!-- Set root logger level -->
> <Root level="WARN">
> <AppenderRef ref="DailyFile"/>
> </Root>
> <Logger name="de.uplanet" level="info" additivity="false">
> <AppenderRef ref="DailyFile"/>
> </Logger>
> </Loggers>
> </Configuration>
> {code}
> If you have a new Installation it works as expected, after a few days we have
> this behavior:
> Example at 16.04.2019:
> After an restart of the service, the content portal.log will be copied in a
> file with that name portal.15-12-2018.log. the 15th december 2018 is the
> creation date of the log folder where the logs are saved.
> And after that the old content in portal.log will be deleted.
> New log content will be logged in the empty portal.log
>
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)