ArcStache.ComLogUtil.LogInfo C# (CSharp) Метод

LogInfo() публичный Метод

Logs the info.
public LogInfo ( string className, string publicMethodName, string message ) : void
className string Name of the source class.
publicMethodName string Name of the public method.
message string The message.
Результат void
        public void LogInfo(string className, string publicMethodName, string message)
        {
            this.Log(LogLevel.Info, string.Format("{0}::{1}{2}{3}", className, publicMethodName, _separator, message));
        }

Usage Example

Пример #1
0
        public void Shutdown()
        {
            const string methodName = "Shutdown";

            logger.LogMessage(ServerLogger.msgType.debug, methodName, 9999, "firing!");
            _dtsLogger.LogInfo(soe_name, methodName, "firing");
        }
All Usage Examples Of ArcStache.ComLogUtil::LogInfo