From a2865f7052dba85f7fee9e684c7bc46d0381303b Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 10 Jul 2023 20:31:05 -0400 Subject: [PATCH] be verbose on VC's about when we send the grant release REST call; --- src/p25/Control.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/p25/Control.cpp b/src/p25/Control.cpp index 6ace6ac0..9e2cb031 100644 --- a/src/p25/Control.cpp +++ b/src/p25/Control.cpp @@ -1219,6 +1219,10 @@ void Control::notifyCC_ReleaseGrant(uint32_t dstId) return; } + if (m_verbose) { + LogMessage(LOG_P25, "REST request, notifying CC of call termination, dstId = %u", dstId); + } + // callback REST API to release the granted TG on the specified control channel json::object req = json::object(); int state = modem::DVM_STATE::STATE_P25;