Acp.Logger.Debug C# (CSharp) Method

Debug() public method

public Debug ( string text ) : void
text string
return void
        public void Debug(string text)
        {
            if (LEVEL_DEBUG >= _logLevel)
                EventLog.WriteEntry(_sourceName, text, EventLogEntryType.Information);
        }