You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4j-dev@logging.apache.org by "sivan (JIRA)" <ji...@apache.org> on 2014/07/04 08:58:34 UTC

[jira] [Commented] (LOG4J2-659) Log files not properly rolled over to the folder.

    [ https://issues.apache.org/jira/browse/LOG4J2-659?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14052208#comment-14052208 ] 

sivan commented on LOG4J2-659:
------------------------------

Thanks a lot Ralph.
Now its working fine in our production environment and you can close this issue.

> Log files not properly rolled over to the folder.
> -------------------------------------------------
>
>                 Key: LOG4J2-659
>                 URL: https://issues.apache.org/jira/browse/LOG4J2-659
>             Project: Log4j 2
>          Issue Type: Bug
>          Components: Appenders
>    Affects Versions: 2.0-rc1
>         Environment: Java 7
>            Reporter: sivan
>            Priority: Critical
>              Labels: Rollover
>         Attachments: $$$date_debug _trace.txt, $$date_debug _trace.txt, 2014-05.png, 2014-06.png, Log4j.png, log4j.png
>
>
> This is happening in our production environment. My application is using rolling file appender. In the beginning of this month the files are not rolled over to the folders as expected.
> 2014-05 folder contains 06/01 and 06/02 rolled over files and 2014-06 folder contains 05/30 file
> In another server 2014-06 folder is not yet created still now and the log files on 06/01 and 06/02 are rolled over to the 2014-05 folder.
> Screen shots have been attached. In the screen shots file names are masked due to the compliance rules.
> Can you please advise what I need to do for resolving this issue?
> The configuration is as below.
> <?xml version="1.0" encoding="UTF-8"?>
> <configuration>
> 	<properties>
> 		<property name="logPattern">%c|%K{sessionId}|%t|%d{MM/dd/yyyy HH:mm:ss.SSS}|%p|%C|%M|%L|%K{msg}%n</property>
> 		<property name="filePattern">${sys:logfilepath}//$${date:yyyy-MM}//${sys:oft.appserver}-out-%d{yyyy-MM-dd}.log</property>
> 		<property name="fileName">${sys:logfilepath}//${sys:oft.appserver}-out.log</property>
> 	</properties>
> 	<appenders>
> 		<Console name="Console" target="SYSTEM_OUT">
> 			<PatternLayout pattern="logPattern"/>
> 		</Console>
> 		<RollingFile name="RollingFile" fileName="${fileName}" filePattern="${filePattern}">
> 			<PatternLayout>
> 				<pattern>${logPattern}</pattern>
> 			</PatternLayout>
> 			<Policies>
> 				<TimeBasedTriggeringPolicy />
> 			</Policies>
> 		</RollingFile>
> 	</appenders>
> 	<loggers>
> 		<AsyncLogger name="logtype" level="info" includeLocation="true" additivity="false">
> 			<AppenderRef ref="RollingFile"/>
> 		</AsyncLogger>
> 		<root level="info">
> 			<AppenderRef ref="Console"/>
> 		</root>
> 	</loggers>
> </configuration>



--
This message was sent by Atlassian JIRA
(v6.2#6252)

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscribe@logging.apache.org
For additional commands, e-mail: log4j-dev-help@logging.apache.org