BatchGuy.App.Shared.Services.LoggingService.LogErrorFormat C# (CSharp) Method

LogErrorFormat() public method

public LogErrorFormat ( Exception exception, string methodName ) : void
exception System.Exception
methodName string
return void
        public void LogErrorFormat(Exception exception, string methodName)
        {
            _log.ErrorFormat(_logErrorFormat, exception.Message, exception.StackTrace, methodName);
        }