From 6aade5a416c34e26d0df7f2be8739bb888294589 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 27 Feb 2026 23:13:57 -0500 Subject: [PATCH] remove duration log from Non-Call TDU; --- src/fne/network/callhandler/TagDMRData.cpp | 2 +- src/fne/network/callhandler/TagP25Data.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fne/network/callhandler/TagDMRData.cpp b/src/fne/network/callhandler/TagDMRData.cpp index 7c1709b4..886bebba 100644 --- a/src/fne/network/callhandler/TagDMRData.cpp +++ b/src/fne/network/callhandler/TagDMRData.cpp @@ -230,7 +230,7 @@ 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 + #define NONCALL_END_LOG "DMR, Non-Call Terminator, peer = %u, ssrc = %u, srcId = %u, dstId = %u, slot = %u, streamId = %u, fromUpstream = %u", peerId, ssrc, srcId, dstId, slotNo, streamId, fromUpstream if (m_network->m_logUpstreamCallStartEnd && fromUpstream) LogInfoEx(LOG_PEER, NONCALL_END_LOG); else if (!fromUpstream) diff --git a/src/fne/network/callhandler/TagP25Data.cpp b/src/fne/network/callhandler/TagP25Data.cpp index 8b6fbd6b..b8079f7b 100644 --- a/src/fne/network/callhandler/TagP25Data.cpp +++ b/src/fne/network/callhandler/TagP25Data.cpp @@ -319,7 +319,7 @@ bool TagP25Data::processFrame(const uint8_t* data, uint32_t len, uint32_t peerId m_network->eraseStreamPktSeq(peerId, streamId); } } else { - #define NONCALL_TDU_LOG "P25, Non-Call TDU, peer = %u, ssrc = %u, sysId = $%03X, netId = $%05X, srcId = %u, dstId = %u, duration = %u, streamId = %u, fromUpstream = %u", peerId, ssrc, sysId, netId, srcId, dstId, duration / 1000, streamId, fromUpstream + #define NONCALL_TDU_LOG "P25, Non-Call TDU, peer = %u, ssrc = %u, sysId = $%03X, netId = $%05X, srcId = %u, dstId = %u, streamId = %u, fromUpstream = %u", peerId, ssrc, sysId, netId, srcId, dstId, streamId, fromUpstream if (m_network->m_logUpstreamCallStartEnd && fromUpstream) LogInfoEx(LOG_PEER, NONCALL_TDU_LOG); else if (!fromUpstream)