for non-authoritative VCs generate a log message in verbose mode for the protocols to indicate a TG permit operation has occcurred;

3.0-maint
Bryan Biedenkapp 3 years ago
parent 6b2a016497
commit 56e4e7cf37

@ -570,6 +570,10 @@ void Slot::permittedTG(uint32_t dstId)
return; return;
} }
if (m_verbose) {
LogDebug(LOG_DMR, "DMR Slot %u, non-authoritative TG permit, dstId = %u", m_slotNo, dstId);
}
m_permittedDstId = dstId; m_permittedDstId = dstId;
} }

@ -648,6 +648,10 @@ void Control::permittedTG(uint32_t dstId)
return; return;
} }
if (m_verbose) {
LogDebug(LOG_NXDN, "non-authoritative TG permit, dstId = %u", dstId);
}
m_permittedDstId = dstId; m_permittedDstId = dstId;
} }

@ -808,6 +808,10 @@ void Control::permittedTG(uint32_t dstId)
return; return;
} }
if (m_verbose) {
LogDebug(LOG_P25, "non-authoritative TG permit, dstId = %u", dstId);
}
m_permittedDstId = dstId; m_permittedDstId = dstId;
} }

Loading…
Cancel
Save

Powered by TurnKey Linux.