(Logging ApplicationBlock)根据严重性将日志拆分为2个文件

发布于 2024-09-04 03:36:53 字数 87 浏览 6 评论 0原文

我希望能够将所有错误消息路由到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酸甜透明夹心 2024-09-11 03:36:53

这是很有可能的。由于您没有提供确切的详细信息,我可以提供一个通用的解决方案。编写一个枚举来定义与您的应用程序相关的日志记录级别/类别(或者如果您从头开始创建自己的日志类库并将枚举放入其中,则最好启动一个日志类库)。

public enum LogCategory
{
    Info,
    Error,
    Fatal,
    Debug
}

现在,当您编写一个将日志记录写入日志的方法时,您可以将枚举作为该方法的必需参数。

public WriteToLog(string logMessage, LogCategory category)
{
    switch(category)
    {
        case LogCategory.Info:
            // write to Info.log.txt
            break;
        case LogCategory.Error:
        case LogCategory.Fatal:
            // write to Error.log.txt
            break;
        case LogCategory.Debug:
            // write to Debug.log.txt
            break;
        default:
            // validate more
            break;
    }
}

这会让你朝着正确的方向前进。

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).

public enum LogCategory
{
    Info,
    Error,
    Fatal,
    Debug
}

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.

public WriteToLog(string logMessage, LogCategory category)
{
    switch(category)
    {
        case LogCategory.Info:
            // write to Info.log.txt
            break;
        case LogCategory.Error:
        case LogCategory.Fatal:
            // write to Error.log.txt
            break;
        case LogCategory.Debug:
            // write to Debug.log.txt
            break;
        default:
            // validate more
            break;
    }
}

That will get you headed in the right direction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文