Identity Manager is randomly updating older variants of the server.log
Release : 14.4.1CHF2
Component : IdentityMinder(Identity Manager)
The log4j_jboss.xml is missing the TimeBasedTriggeringPolicy declaration.
The issue was due to an incomplete configuration of the wildfly-idm/standalone/deployments/iam_im.ear/config/com/netegrity/config/log4j_jboss.xml.
Update the file to the below value and then restart the application server.
<RollingFile fileName="${LogFileDir}/server.log" filePattern="${LogFileDir}/server.log.%d{yyyy-MM-dd}-%i" name="rollingLogger">
<PatternLayout>
<pattern>%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %m%ex%n</pattern>
<charset>UTF-8</charset>
</PatternLayout>
<Policies>
<TimeBasedTriggeringPolicy interval="1" modulate="true"/>
<SizeBasedTriggeringPolicy size="100MB" />
</Policies>
</RollingFile>
Apply 14.4 CP2 when it is available.