CloudWatchMonitor.MonitorService.Info C# (CSharp) Метод

Info() приватный Метод

private Info ( string message ) : void
message string
Результат void
        private void Info(string message, params Object[] args)
        {
            // If we are running in service mode, then
            // ignore the informational message, otherwise
            // forward to the console.
            if (_eventLog == null)
            {
                Console.WriteLine(message, args);
            }
            else
            {
                // Don't forward informational messages to the event log
            }
        }