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");
您可能感兴趣的文章: