来自standalone.xml 的片段,
**以下配置未产生结果。
<file relative-to="jboss.server.log" path="server.log"/>
<suffix value=".yyyy-MM-dd"/>
<rotate-size value="500m"/>
<append value="true"/>
<max-backup-index value="5"/>
来自standalone.xml 的片段,
**以下配置未产生结果。
<file relative-to="jboss.server.log" path="server.log"/>
<suffix value=".yyyy-MM-dd"/>
<rotate-size value="500m"/>
<append value="true"/>
<max-backup-index value="5"/>
使用该属性periodic-size-rotating-file-handler
时不会清除备份。suffix
请参阅Wildscribe 文档。这已被请求,但没有真正的好方法来确定需要清除哪些文件。
您可能需要直接在 中使用旋转文件处理程序standalone.xml
,如下所示:
<profile>
<subsystem xmlns="urn:jboss:domain:logging:3.0">
<periodic-rotating-file-handler name="FILE" autoflush="true">
<formatter>
<named-formatter name="PATTERN"/>
</formatter>
<file relative-to="jboss.server.log.dir" path="server.log"/>
<suffix value=".yyyy-MM-dd"/>
<append value="true"/>
</periodic-rotating-file-handler>
</subsystem>
</profile>