Cgw.NLogEx.LoggerEx.Debug C# (CSharp) Method

Debug() public method

带异常信息的Debug日志输出。
public Debug ( Exception e, string message ) : void
e System.Exception e
message string message
return void
        public void Debug(Exception e, string message, params object[] args)
        {
            if (this.Log.IsDebugEnabled)
            {
                this.WriteToLog(LogLevel.Debug, e, message, args);
            }
        }

Same methods

LoggerEx::Debug ( SmcErr err, Exception e, string message ) : void
LoggerEx::Debug ( SmcErr err, string message ) : void
LoggerEx::Debug ( string message ) : void