public void LogStatistics()
        {
            string dfnConstituentType = m_Constituent.ToString("G");
            string stats = StatisticsHelper.FormatLogMessage(m_Title, dfnConstituentType, Interlocked.Read(ref NumProcessedMessages), Interlocked.Read(ref NumBrokenMessages));

            m_LogAgent.LogInfo(m_Constituent, m_Title, stats);
        }
        public void LogStatistics()
        {
            string stats = StatisticsHelper.FormatLogMessage(Name, "", Interlocked.Read(ref m_NumMessagesProcessed), Interlocked.Read(ref m_NumBrokenMsgs));

            LogAgent.LogInfo(TaskType, Name, stats);
        }