OpenPop:我如何关闭DEBUG打印



当我使用OpenPop。它总是通过控制台调试信息显示,如:

OpenPOP: (DEBUG) SendCommand: "RETR 84"
OpenPOP: (DEBUG) Server-Response: "+OK message follows"
OpenPOP: (DEBUG) SendCommand: "RETR 85"
OpenPOP: (DEBUG) Server-Response: "+OK message follows"
OpenPOP: (DEBUG) SendCommand: "RETR 86"
OpenPOP: (DEBUG) Server-Response: "+OK message follows"
OpenPOP: (DEBUG) SendCommand: "RETR 87"
OpenPOP: (DEBUG) Server-Response: "+OK message follows"

我可以关掉它吗?

我知道这是一个老问题,但我最近遇到了同样的问题,我想我应该分享我的解决方案。

OpenPop的日志机制使用ILog接口。您可以通过创建一个实现ILog接口的类来改变默认机制,使用自定义记录器,然后通过调用DefaultLogger.SetLog(…)方法告诉OpenPop使用您的记录器。

现在您可以对日志信息做任何您想做的事情,包括完全忽略它。

参见示例:

// Defines a logger for managing system logging output  
public interface ILog
{
    // Logs an error message to the logs
    void LogError(string message);
    // Logs a debug message to the logs
    void LogDebug(string message);
}
public static void ChangeLogging()
{
    DefaultLogger.SetLog(new MyOwnLogger());
}
class MyOwnLogger : ILog
{
    public void LogError(string message)
    {
        Console.WriteLine("ERROR!!!: " + message);
    }
    public void LogDebug(string message)
    {
        // Dont want to log debug messages
    }
}

相关内容

  • 没有找到相关文章

最新更新