.NET 日志系统设计思路及实现代码(2)

public void WriteBug(string LogContent)
        {
            _adaptee.WriteBug(LogContent);
        }

public void WriteError(string LogContent)
        {
            _adaptee.WriteError(LogContent);
        }
    }


•   调用方式

复制代码 代码如下:


SmartLog log =new SmartLog (new FileLog());

log.WriteTrack("Hello word");

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjgyzp.html