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

Debug() public méthode

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

Same methods

CustomLogger::Debug ( string message ) : void