[
https://issues.apache.org/jira/browse/LOG4J2-1476?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15393178#comment-15393178
]
Harish HG commented on LOG4J2-1476:
-----------------------------------
This is the configuration of logs which I have used..
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="ALL" name="" packages="">
<Properties>
<Property name="baseDir">D:\Logs\</Property>
</Properties>
<Appenders>
<RollingFile name="RollingFile" append="true"
fileName="${baseDir}/app.log"
filePattern="${baseDir}/$${date:yyyy-MM}/app-%d{yyyy-MM-dd-HH}-%i.log.gz">
<PatternLayout pattern="%d{dd/MM/YYYY HH:mm:ss.SSS} [%t] %-5level
%logger{36} %msg %n%n%n"/>
<Policies>
<TimeBasedTriggeringPolicy />
<SizeBasedTriggeringPolicy size="30 MB" />
</Policies>
<DefaultRolloverStrategy max="5">
<Delete basePath="${baseDir}" maxDepth="3">
<IfFileName glob="*/app-*.log.gz">
<IfLastModified age="60d" />
</IfFileName>
</Delete>
</DefaultRolloverStrategy>
</RollingFile>
</Appenders>
<Loggers>
<Root level="ALL">
<AppenderRef ref="RollingFile"/>
</Root>
</Loggers>
</Configuration>
> New line is not appending in file logs
> --------------------------------------
>
> Key: LOG4J2-1476
> URL: https://issues.apache.org/jira/browse/LOG4J2-1476
> Project: Log4j 2
> Issue Type: Question
> Components: Layouts
> Affects Versions: 2.6.2
> Environment: Linux kernal system
> Reporter: Harish HG
> Priority: Critical
> Labels: layout
> Original Estimate: 24h
> Remaining Estimate: 24h
>
> New line is not appending in file logs, I used the pattern layout as below
> {code}
> <PatternLayout pattern="%n%d{dd/MM/YYYY HH:mm:ss.SSS} [%t] %-5level
> %logger{36} %msg%n"/>
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]