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

Error() public static method

public static Error ( object o, Exception e ) : void
o object
e System.Exception
return void
        public static void Error(object o, Exception e)
        {
            string s = e.Message;// +e.InnerException;
            if (null != LogsErrorEvent)
                LogsErrorEvent(o, new LogEventArgs(LogLevel.Error, DateTime.Now, EscapeNonPrintables(s)));
        }

Same methods

Log::Error ( object o, string s ) : void