Log4J 如何在 NTEventLogAppender 上设置日志文件夹(KEY)

发布于 2024-11-13 06:42:27 字数 602 浏览 2 评论 0原文

我创建了一个 NTEventLogAppender 类型的附加程序,如下所示:

log4j.appender.EVA=org.apache.log4j.nt.NTEventLogAppender
#log4j.appender.EVA.log=TestLog
log4j.appender.EVA.layout=org.apache.log4j.PatternLayout
log4j.appender.EVA.source=TestSource
log4j.appender.EVA.layout.ConversionPattern=[%c][%l][%p][%thread]: %m%n

如您所见,在注释行上,我尝试设置日志 TestLog,以便将日志错误存储在我的应用程序的特定事件查看器日志中,而不是存储在事件查看器默认应用程序日志。

如果我取消注释一行,我会收到一条错误消息,指出日志属性不存在:

**log4j:WARN No such property [log] in org.apache.log4j.nt.NTEventLogAppender.**

是否可以在使用 Log4Net 时执行此操作?

谢谢

I've created a appender of the type NTEventLogAppender like this:

log4j.appender.EVA=org.apache.log4j.nt.NTEventLogAppender
#log4j.appender.EVA.log=TestLog
log4j.appender.EVA.layout=org.apache.log4j.PatternLayout
log4j.appender.EVA.source=TestSource
log4j.appender.EVA.layout.ConversionPattern=[%c][%l][%p][%thread]: %m%n

As you can see, on the comented line I tried to set the log TestLog, so that the log error get stored on a specific Event Viewer Log for my application, instead of the Event Viewr default Application Log.

If I uncoment a line I an error sayng that the log property doesn't exist:

**log4j:WARN No such property [log] in org.apache.log4j.nt.NTEventLogAppender.**

Is it even possible to do this as it is using Log4Net?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇色安年 2024-11-20 06:42:27

我认为这在 log4j 中是不可能的:

为什么我无法将记录器名称映射到 NT 中出现的记录器
我使用 NTEventLogAppender 时的事件日志?

不幸的是,记录器名称被硬编码在消息中
资源 DLL(请参阅之前有关 NTEventLogAppender 的问题),所以
没有任何简单的方法可以动态地覆盖这些......事实上,我
不认为可以做到这一点,因为你必须修改 DLL
每个应用程序的资源。由于大多数本机应用程序不
无论如何使用记录器列...

来源:http://logging.apache .org/log4j/1.2/faq.html#a2.10

I don't think this is possible in log4j:

Why can't I map my logger names to the loggers that appear in the NT
Event Log when I use the NTEventLogAppender?

Unfotunately, the logger names are hardcoded within the message
resource DLL (see previous question about NTEventLogAppender), so
there isn't any easy way to override those dynamically... in fact, I
don't think it's possible to do it, as you'd have to modify the DLL
resources for every application. Since most native applications don't
use the Logger column anyway...

Source: http://logging.apache.org/log4j/1.2/faq.html#a2.10

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文