Chinchilla.Logging.NLog.NLogLogger.ErrorFormat C# (CSharp) Method

ErrorFormat() public method

public ErrorFormat ( Exception exception, string format ) : void
exception System.Exception
format string
return void
        public void ErrorFormat(Exception exception, string format, params object[] args)
        {
            var message = string.Format(format, args);
            LogInternal(LogLevel.Error, message, exception);
        }
    }