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

StatusLog_LogException() private method

private StatusLog_LogException ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void StatusLog_LogException(object sender, EventArgs<Exception> e)
        {
            const int LowPriority = 1;

            // We'll let the connected clients know that we encountered an exception while logging the status update.
            m_statusUpdateThread.Push(LowPriority, () => m_logStatusUpdates = false);
            UpdateStatus(UpdateType.Alarm, "Error occurred while logging status update - {0}\r\n\r\n", e.Argument.Message);
            m_statusUpdateThread.Push(LowPriority, () => m_logStatusUpdates = true);

            LogException(e.Argument);
        }
ServiceHelper