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);
        }
    }