From a600f53e25c061242610c13f85fdaef2f4e4a95f Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 2 Feb 2026 14:44:26 -0500 Subject: [PATCH] log non-call DMR terminators like P25; --- src/fne/network/callhandler/TagDMRData.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/fne/network/callhandler/TagDMRData.cpp b/src/fne/network/callhandler/TagDMRData.cpp index f044e5dc..f99a8f54 100644 --- a/src/fne/network/callhandler/TagDMRData.cpp +++ b/src/fne/network/callhandler/TagDMRData.cpp @@ -229,6 +229,12 @@ bool TagDMRData::processFrame(const uint8_t* data, uint32_t len, uint32_t peerId } m_network->eraseStreamPktSeq(peerId, streamId); + } else { + #define NONCALL_END_LOG "DMR, Non-Call Terminator, peer = %u, ssrc = %u, srcId = %u, dstId = %u, slot = %u, duration = %u, streamId = %u, fromUpstream = %u", peerId, ssrc, srcId, dstId, slotNo, duration / 1000, streamId, fromUpstream + if (m_network->m_logUpstreamCallStartEnd && fromUpstream) + LogInfoEx(LOG_PEER, NONCALL_END_LOG); + else if (!fromUpstream) + LogInfoEx(LOG_MASTER, NONCALL_END_LOG); } }