C# Class AutoLua.Core.Logging.LoggingExtensions

日志扩展。
Show file Open project: ShiQiKuangSan/AutoLua

Public Methods

Method Description
Error ( ILogger logger, Exception exception, string format ) : void

错误日志。

Fatal ( ILogger logger, Exception exception, string format ) : void

致命错误日志。

Method Details

Error() public static method

错误日志。
public static Error ( ILogger logger, Exception exception, string format ) : void
logger ILogger 日志对象。
exception Exception 异常信息对象。
format string 可恢复错误日志信息。
return void

Fatal() public static method

致命错误日志。
public static Fatal ( ILogger logger, Exception exception, string format ) : void
logger ILogger 日志对象。
exception Exception 异常信息对象。
format string 致命错误信息。
return void