hornetq restart会覆盖日志文件

时间:2013-12-27 10:48:05

标签: hornetq

hornetq restart会覆盖日志文件,虽然日志文件轮换工作正常,但我使用的是以下配置,我在独立集群模式下运行大黄蜂

# File handler configuration handler.FILE=org.jboss.logmanager.handlers.PeriodicRotatingFileHandler handler.FILE.level=DEBUG handler.FILE.properties=autoFlush,fileName,suffix,append handler.FILE.autoFlush=true handler.FILE.fileName=../logs/hornetq.log handler.FILE.suffix=.yyyy-MM-dd handler.FILE.append=true handler.FILE.formatter=PATTERN

1 个答案:

答案 0 :(得分:2)

发现问题,属性的顺序很重要!

# File handler configuration
handler.FILE=org.jboss.logmanager.handlers.PeriodicRotatingFileHandler
handler.FILE.level=DEBUG
handler.FILE.properties=autoFlush,append,fileName,suffix
handler.FILE.autoFlush=true
handler.FILE.append=true
handler.FILE.fileName=../logs/hornetq.log
handler.FILE.suffix=.yyyy-MM-dd
handler.FILE.formatter=PATTERN

https://community.jboss.org/message/742699