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

Trace() public method

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

Same methods

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