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

Warn() public static method

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

Same methods

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