使用播放框架登录多个文件

时间:2013-03-15 06:46:45

标签: java logging playframework

我有一个在play framework 1.2.5上运行的java应用程序。

我想以这样一种方式进行登录,即每个模块都有自己的日志文件,相应的模块日志记录将放在自己的文件中。

可以使用播放记录吗?或者还有其他办法吗? 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

是的,当然,这是可能的。您可以使用 apache log4j 来使用高级记录器设置。默认情况下,Play!Framework使用apache log4j进行日志记录,请参阅this documentation

您必须使用以下条目在application.conf文件上启用此高级设置:

# More logging configuration - config file located at the same level on this file
application.log.path=/log4j.properties
application.log.system.out=off

假设您有两个位于com.mymodulecom.othermodule包上的模块。所以如果你想让这些模块登录到不同的文件,你的log4j.properties文件应该是这样的:

# Define logging file appender for mymodule package
log4j.appender.mymodule=org.apache.log4j.FileAppender 
log4j.appender.mymodule.File=mymodule.log
log4j.appender.mymodule.layout=org.apache.log4j.PatternLayout

# Define logging file appender for othermodule package
log4j.appender.othermodule=org.apache.log4j.FileAppender
log4j.appender.othermodule.File=othermodule.log 
log4j.appender.othermodule.layout=org.apache.log4j.PatternLayout

log4j.logger.com.mymodule=INFO, package1
log4j.logger.com.othermodule=INFO, package2

如需更多参考,请尝试从以下链接中学习: