NLog,埃尔玛 +共享库
我正在尝试想出一种方法来为我的所有 MVC 项目创建一个通用库。我从 BaseController 和 BaseModel 类开始非常简单。简单的东西!
现在,在我的项目中,我想使用 Elmah 或 NLog 来记录异常和/或跟踪信息。
谁能给我一些关于编写通用库来支持两者的最佳实践的想法?
I am trying to come up with a way to create a common library for all my MVC projects. I started off really simple with BaseController and BaseModel classes. Easy stuff!
Now in my projects I would like to either use Elmah or NLog for logging exceptions and/or tracing info.
Can anyone give me some ideas on the best practices for writing a common library to support both?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用 NLog 作为日志记录的基础。我为 NLog 创建了一个小目标,可用于将异常路由到 ELMA。您可以在 https://github.com/ccellar/nlog-elmah-target。
通过此目标,您可以使用 logger.*Exception( ... ) 来记录异常并将其传递给 ELMAH。
I would use NLog as base for your logging. I've created a small target for NLog which could be used to route exceptions to ELMA. You'll find it at https://github.com/ccellar/nlog-elmah-target.
With this target you are able to use
logger.*Exception( ... )
to log the exception and to pass it to ELMAH.