Recurity.Swf.Log.Debug C# (CSharp) 메소드

Debug() 공개 정적인 메소드

public static Debug ( object o, Exception e ) : void
o object
e System.Exception
리턴 void
        public static void Debug(object o, Exception e)
        {
            string s = e.Message + e.InnerException;
            if (null != LogsDebugEvent)
                LogsDebugEvent(o, new LogEventArgs(LogLevel.Debug, DateTime.Now, EscapeNonPrintables(s)));
        }

Same methods

Log::Debug ( object o, String s ) : void