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

Debug() public method

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

Same methods

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