(Logging ApplicationBlock)根据严重性将日志拆分为2个文件
我希望能够将所有错误消息路由到 error.log.txt 并将所有信息消息路由到 info.log.txt (无论类别如何)。是否可以?
谢谢
I want to be able to route all error messages to error.log.txt and all information messages to info.log.txt (regardless of categories). Is it possible?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是很有可能的。由于您没有提供确切的详细信息,我可以提供一个通用的解决方案。编写一个枚举来定义与您的应用程序相关的日志记录级别/类别(或者如果您从头开始创建自己的日志类库并将枚举放入其中,则最好启动一个日志类库)。
现在,当您编写一个将日志记录写入日志的方法时,您可以将枚举作为该方法的必需参数。
这会让你朝着正确的方向前进。
It's very much possible. Since you haven't provided exact details I can provide a generic solution to this. Write an enum that defines the levels/categories of logging involved with your application (or better yet start a log class library if you're creating your own from scratch and place the enum in it).
Now when you write a method for your logging to write to a log you could make the enum a required argument to the method.
That will get you headed in the right direction.