Aspects.Logging.Nlog.NLogLogger.Error C# (CSharp) Method

Error() public method

Logs the message and exception with error level.
public Error ( string message, Exception exception ) : void
message string The message.
exception System.Exception The exception.
return void
        public void Error(string message, Exception exception)
        {
            _logger.Error(exception, message);
        }