Recurity.Swf.Log.Debug C# (CSharp) Method

Debug() public static method

public static Debug ( object o, Exception e ) : void
o object
e System.Exception
return 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