ASP.NET MVC(二)log4net日志记录模式
使用 log4net 的 asp.net mvc 2 的最佳日志记录模式是什么?我应该什么时候初始化记录器我应该如何访问记录器实例?
What is the best logging pattern for asp.net mvc 2 using log4net? When should I initialize logger how should I access logger instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们遵循与所有应用程序使用的相同模式:
在每个类内创建一个记录器,将类类型设置为记录器名称,并将类内需要记录的所有内容记录到本地记录器。像这样(例如......还有其他方法来声明记录器):
如果您非常愿意,您可以尝试在您的类中编织日志记录方面,但有时您需要更细粒度的控制,这就是我们经历的原因手工将它们放入的过程。
We follow the same pattern that we use for all apps:
Create a logger inside each class, setting the class type as the logger name and log everything that need to be logged inside the class to the local logger. Like this (for example... there are other ways to declare the logger):
If you're so inclined you could try to weave a logging aspects throught your class, but sometimes you need finer grained control, which is why we go through the process of putting them in by hand.