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

Warn() 공개 정적인 메소드

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