阿尔忒弥斯服务日志文件大小



有没有办法在文件中设置Artemis服务的文件大小限制logging.properties?我在文档中找不到任何关于文件大小的内容。

etc/logging.properties文件中尝试这样的事情:

# Size Rotating File handler configuration
handler.ROTATING_FILE=org.jboss.logmanager.handlers.SizeRotatingFileHandler
handler.ROTATING_FILE.level=INFO
handler.ROTATING_FILE.properties=autoFlush,fileName,rotateSize,maxBackupIndex
handler.ROTATING_FILE.autoFlush=true
handler.ROTATING_FILE.fileName=${artemis.instance}/log/activemq.log
handler.ROTATING_FILE.formatter=PATTERN
handler.ROTATING_FILE.rotateSize=1024000
handler.ROTATING_FILE.maxBackupIndex=20
# Formatter pattern configuration
formatter.PATTERN=org.jboss.logmanager.formatters.PatternFormatter
formatter.PATTERN.properties=pattern
formatter.PATTERN.pattern=%d{HH:mm:ss,SSS} %-5p [%c] %s%E%n

确保更新logger.handlers以使用新的ROTATING_FILE处理程序,例如:

logger.handlers=ROTATING_FILE,CONSOLE

相关内容

  • 没有找到相关文章

最新更新