BoC.Logging.Log4netLogger.Warn C# (CSharp) Method

Warn() public method

public Warn ( String message ) : void
message String
return void
        public void Warn(String message)
        {
            if (IsWarnEnabled)
            {
                Logger.Log(ownerType, Level.Warn, message, null);
            }
        }

Same methods

Log4netLogger::Warn ( String message, Exception exception ) : void