我正在尝试配置wildfly standalone.xml以进行日志记录我已在standalone.xml中配置了其他文件日志记录未在myapplication.log文件中完成。这是我的配置文件。
<periodic-rotating-file-handler name="1COMM" autoflush="true">
<formatter>
<named-formatter name="1COMM-PATTERN"/>
</formatter>
<file relative-to="jboss.server.log" path="myapplication.log"/>
<suffix value=".yyyy-MM-dd"/>
<append value="true"/>
</periodic-rotating-file-handler>
在wildfly / logs中没有名为myapplication.log的文件 需要帮助设置路径?正常。
答案 0 :(得分:0)
试试这个:<file relative-to="jboss.server.log.dir" path="myapplication.log"/>
。