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

LogError() public static method

Writes ERROR-level message to the configured log.
public static LogError ( string message, Exception exception ) : void
message string The message to log.
exception System.Exception The exception to log.
return void
		public static void LogError(string message, Exception exception)
		{
            m_globalLogger.LogError(message, exception);
            SendToAppFail(exception);
		}