From 1a91b26c66edf18b205b11246ccc543f704e6fa3 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 18 Jul 2016 17:46:16 +0100 Subject: [PATCH] Remove unneeded audio infill debug logging. --- DStarControl.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/DStarControl.cpp b/DStarControl.cpp index bdfe2b2..7525ce6 100644 --- a/DStarControl.cpp +++ b/DStarControl.cpp @@ -815,8 +815,6 @@ bool CDStarControl::insertSilence(const unsigned char* data, unsigned char seqNo return true; } - LogDebug("D-Star, current=%u last=%u", seqNo, m_netN); - unsigned int count; if (seqNo > oldSeqNo) count = seqNo - oldSeqNo; @@ -835,8 +833,6 @@ bool CDStarControl::insertSilence(const unsigned char* data, unsigned char seqNo void CDStarControl::insertSilence(unsigned int count) { - LogDebug("D-Star, insert %u frames", count); - unsigned char n = (m_netN + 1U) % 21U; for (unsigned int i = 0U; i < count; i++) { @@ -862,8 +858,6 @@ void CDStarControl::insertSilence(unsigned int count) n = (n + 1U) % 21U; } - - LogDebug("D-Star, last=%u", m_netN); } void CDStarControl::blankDTMF(unsigned char* data) const