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

Info() 공개 정적인 메소드

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

Same methods

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