Enable Debug Log Messages when DMR Roaming Beacons are being sent.

This commit is contained in:
Chipster
2022-11-30 08:51:06 -06:00
parent 3202d73ce5
commit 14fcbd9c1a

View File

@@ -1249,6 +1249,7 @@ int CMMDVMHost::run()
setMode(MODE_DMR); setMode(MODE_DMR);
dmrBeaconIntervalTimer.start(); dmrBeaconIntervalTimer.start();
dmrBeaconDurationTimer.start(); dmrBeaconDurationTimer.start();
LogDebug("sending DMR Roaming Beacon (timed mode)");
} }
} }
break; break;
@@ -1260,6 +1261,7 @@ int CMMDVMHost::run()
if (!m_fixedMode && m_mode == MODE_IDLE) if (!m_fixedMode && m_mode == MODE_IDLE)
setMode(MODE_DMR); setMode(MODE_DMR);
dmrBeaconDurationTimer.start(); dmrBeaconDurationTimer.start();
LogDebug("sending DMR Roaming Beacon (network mode)");
} }
} }
} }