寻找 OnLog 事件 - log4net

发布于 2024-08-28 04:28:30 字数 206 浏览 6 评论 0原文

我使用 Log4net 生成不同类型的日志,并使用 RollingFileAppenders 在给定大小上滚动。

现在我有一个新的要求,即日志应该在 Windows 窗体上可见,因此我正在寻找一些可以在我的应用程序中的每个日志条目上处理的事件,以便我也可以在我的窗体中显示该特定日志条目。

或者可能有一些附加程序可以提供此类功能。

对此有什么想法吗?

I am using Log4net to produce different kind of logs and using RollingFileAppenders which rolls on a given size.

Now i have a new requirement that a log should be visible on a windows form therefore i am looking for some event that can be handled on each log entry within my application so i can display that particular log entry in my form as well.

Or there may be some appender which gives such functionality.

Any idea on this?

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

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

发布评论

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

评论(2

挽清梦 2024-09-04 04:28:31

我建议编写您自己的appender - 这真的很容易做到:

  1. 创建一个继承自AppenderSkeleton的类
  2. 覆盖Append方法

简单!

这里是更新文本框的自定义附加程序的示例。

I'd suggest writing your own appender - it's really easy to do:

  1. Create a class that inherits from AppenderSkeleton
  2. Override the Append method

Simple!

Here is an example of a custom appender that updates a textbox.

心意如水 2024-09-04 04:28:31

正如我在这个答案中所建议的,您可以设置一个 MemoryAppender 和监视内存中的日志消息。它不会公开事件,但您可以轻松设置一个计时器 检索最新消息

As I suggest in this answer, you could set up a MemoryAppender and monitor log messages in memory. It does not expose an event but you could easily set up a timer that retrieves the latest messages.

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