From 20f9244c13dfc078243b8366d703ecdcae135463 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Wed, 8 Feb 2023 23:04:35 -0500 Subject: [PATCH] remove accidentally comitted debug changes; --- p25/dfsi/LC.cpp | 2 -- p25/packet/Voice.cpp | 3 --- 2 files changed, 5 deletions(-) diff --git a/p25/dfsi/LC.cpp b/p25/dfsi/LC.cpp index 5e49e7c8..76a886bd 100644 --- a/p25/dfsi/LC.cpp +++ b/p25/dfsi/LC.cpp @@ -280,8 +280,6 @@ bool LC::decodeLDU1(const uint8_t* data, uint8_t* imbe) m_control.setEmergency((serviceOptions & 0x80U) == 0x80U); m_control.setEncrypted((serviceOptions & 0x40U) == 0x40U); m_control.setPriority((serviceOptions & 0x07U)); - LogMessage(LOG_NET, "dfsi::LC::decodeLDU1, raw control service, options = %02X, emerg = %u, encrypt = %u, prio = %u", - serviceOptions, m_control.getEmergency(), m_control.getEncrypted(), m_control.getPriority()); ::memcpy(imbe, data + 5U, P25_RAW_IMBE_LENGTH_BYTES); // IMBE } break; diff --git a/p25/packet/Voice.cpp b/p25/packet/Voice.cpp index 5ddd51e9..4a9c3c57 100644 --- a/p25/packet/Voice.cpp +++ b/p25/packet/Voice.cpp @@ -1120,9 +1120,6 @@ void Voice::writeNet_LDU1() m_p25->m_affiliations.touchGrant(m_rfLC.getDstId()); } - LogMessage(LOG_NET, P25_LDU1_STR " raw control service, emerg = %u, encrypt = %u, prio = %u", - control.getEmergency(), control.getEncrypted(), control.getPriority()); - // set network and RF link control states m_netLC = lc::LC(); m_netLC.setLCO(control.getLCO());