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

Info() public static method

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