使用结构图注入错误记录器
我正在使用 Elmah 来记录一个看起来非常像这样的类 http://blog.omniaconnect.net/2009/07/30/using-a-static-class-for-logging-exceptions-using-elmah/ ,我应该使用结构图注入这个静态类吗?
I'm using Elmah for logging with a class that looks pretty much like this http://blog.omniaconnect.net/2009/07/30/using-a-static-class-for-logging-exceptions-using-elmah/ , should I inject this static class using structuremap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于该类是静态的,因此无需注入任何内容。如果您想注入错误类,则需要从中删除所有 static 关键字。
Since the class is static, there is nothing to inject. If you wanted to inject the error class, you would need to remove all the static keywords from it.