Aqueduct.Diagnostics.Logger.LogError C# (CSharp) Method

LogError() public method

public LogError ( string message, Exception exception ) : void
message string
exception System.Exception
return void
        public void LogError(string message, Exception exception)
        {
            if (m_log.IsErrorEnabled)
                m_log.Error(message, exception);
        }

Same methods

Logger::LogError ( string message, Exception exception, object>.Dictionary extraInfo ) : void