GetCurrentStackTraceInfo() public static method

이 함수 호출전까지의 StackTrace 정보를 제공한다.
public static GetCurrentStackTraceInfo ( ) : string
return string
示例#1
0
        public void Test()
        {
            var stackTrace = StackTracer.GetCurrentStackTraceInfo();

            if (IsDebugEnabled)
            {
                log.Debug("Current StackTrace Inforation");
                log.Debug(LINE);
                log.Debug(stackTrace);
                log.Debug(LINE);
            }
        }