Chinchilla.Logging.ConsoleLogger.ErrorFormat C# (CSharp) Метод

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

public ErrorFormat ( Exception exception, string format ) : void
exception System.Exception
format string
Результат void
        public void ErrorFormat(Exception exception, string format, params object[] args)
        {
            Console.WriteLine(format, args);
            Error(exception);
        }
    }