GSF.ServiceProcess.ServiceHelper.LogException C# (CSharp) Method

LogException() public method

Log exception to ErrorLogger.
public LogException ( Exception ex ) : void
ex System.Exception Exception to log.
return void
        public void LogException(Exception ex)
        {
            s_logError.Publish(null, null, ex);

            if ((object)m_errorLogger != null)
                m_errorLogger.Log(ex);

            OnLoggedException(ex);
        }
ServiceHelper