ArgusTV.Common.Logging.CustomLogger.Warn C# (CSharp) 메소드

Warn() 공개 메소드

public Warn ( string message, Exception exception ) : void
message string
exception System.Exception
리턴 void
        public void Warn(string message, Exception exception)
        {
            if (IsWarnEnabled)
            {
                _log.Warn(exception, message);
            }
        }

Same methods

CustomLogger::Warn ( string message ) : void