Acp.Logger.Error C# (CSharp) 메소드

Error() 공개 메소드

public Error ( string text ) : void
text string
리턴 void
        public void Error(string text)
        {
            if (LEVEL_ERROR >= _logLevel)
                EventLog.WriteEntry(_sourceName, text, EventLogEntryType.Error );
        }

Same methods

Logger::Error ( string text, Exception ex ) : void