OpenPop:如何关闭 DEBUG 打印?

OpenPop : how can I turn off DEBUG printing?

当我使用 OpenPop.NET 库来拖动电子邮件或其他内容时,它总是通过控制台调试信息显示,例如:

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 接口的 class 来更改默认机制以使用自定义记录器,然后通过调用 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
    }
}