日志记录应用程序块-Microsoft Enterprise Library 4.1
在 Logger.Write 的日志应用程序块中,它将事件 id 作为整数参数之一。那么如何决定应该传递什么作为事件 id?
In Logging Application Block in Logger.Write it takes event id as one of the parameter which is integer.So how to decide what should be passed as event id?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
顺便说一句,你真的需要使用 eventId 吗?我认为你可以只传递你想要记录的字符串:-
编辑:- 我的意思是应该有另一个重载,它只需要你想要写入的字符串。
编辑:-来自此处:-
btw, do you really need to use the eventId? I think you can just pass the string you want to log:-
EDIT :- I meant there should be another overload which takes just the string you want to write.
EDIT :- From here :-
我们所做的就是收集您想要报告的不同“故事”,然后为每个故事分配一系列事件 ID。简而言之,提出一个适合您的系统并将其记录下来以供将来参考。
What we do is gather the different "stories" that you want to report on and then assign a sequence of event IDs to each of those stories. So in short, come up with a system that works for you and document it for future reference.