ArgusTV.Common.Logging.CustomLogger.Error C# (CSharp) Method

Error() public method

public Error ( string message, Exception exception ) : void
message string
exception System.Exception
return void
        public void Error(string message, Exception exception)
        {
            if (IsErrorEnabled)
            {
                _log.Error(exception, message);
            }
        }

Same methods

CustomLogger::Error ( string message ) : void