LOG4J 同一类中的多个记录器
我有一个具有 log4j 日志记录的 java 项目。它使用滚动文件附加程序和多个记录器来记录到文件。 我想添加一个 DBappender 并有一个单独的记录器,仅写入此附加器,其他记录器都不会向其发送消息。比如说,我需要一个类有两个记录器,一个写入 fileAppender,一个写入 dbAppender。这可能吗,如果可以的话,它的配置是什么?
谢谢
I have a java project that has a log4j logging. It uses a rolling file appender and multiple loggers to log to a file.
I want to add a DBappender and have a seperate logger that only writes to this appender, with none of the other loggers sending messages to it. I need, say one class to have two loggers, one writing to the fileAppender and one writing to the dbAppender. Is this possible, if so what is the configuration for it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以在一个类中使用两个 Logger。
第一个想法:获取两个不同名称的记录器:
dbLogger
包的配置:(未测试。)
在这种情况下,
dbLogger
还会记录到mainlog
附加程序。如果不合适你可以使用mainlog
(和其他)附加程序中的自定义过滤器,用于过滤dbLogger
的消息。另一个解决方案是为dbLogger
使用完全不同的前缀:Log4j 配置:
请注意,如果将相同的参数传递给
getLogger()
方法,您将获得相同的Logger
对象,因此您必须使用不同的名称。It's possible to use two
Logger
s in one class.First idea: get the two loggers with different names:
Config for the package of the
dbLogger
:(Not tested.)
In that case the
dbLogger
also logs to themainlog
appender. If it's not appropriate you could usea custom filter in the
mainlog
(and other) appenders which filters out the messages of thedbLogger
. Another solution is using a completely different prefix for thedbLogger
:Log4j config:
Note that if you pass the same parameter to the
getLogger()
method you will get sameLogger
object, so you have to use different names.