ArgusTV.Common.Logging.CustomLogger.Warn C# (CSharp) Méthode

Warn() public méthode

public Warn ( string message, Exception exception ) : void
message string
exception System.Exception
Résultat void
        public void Warn(string message, Exception exception)
        {
            if (IsWarnEnabled)
            {
                _log.Warn(exception, message);
            }
        }

Same methods

CustomLogger::Warn ( string message ) : void