0

来自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"/>
4

2 回答 2

0

使用该属性periodic-size-rotating-file-handler时不会清除备份。suffix请参阅Wildscribe 文档。这已被请求,但没有真正的好方法来确定需要清除哪些文件。

于 2020-08-14T22:02:54.693 回答
0

您可能需要直接在 中使用旋转文件处理程序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>
于 2020-08-15T15:36:57.970 回答