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

LogFatalError() public method

public LogFatalError ( string message, Exception exception ) : void
message string
exception System.Exception
return void
        public void LogFatalError(string message, Exception exception)
        {
            if (m_log.IsFatalEnabled)
                m_log.Fatal(message, exception);
        }
    }