From 14fcbd9c1ae7e360467242bb2b5341bfc6f342ec Mon Sep 17 00:00:00 2001 From: Chipster Date: Wed, 30 Nov 2022 08:51:06 -0600 Subject: [PATCH] Enable Debug Log Messages when DMR Roaming Beacons are being sent. --- MMDVMHost.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MMDVMHost.cpp b/MMDVMHost.cpp index fcd0b397..a5ce54a0 100644 --- a/MMDVMHost.cpp +++ b/MMDVMHost.cpp @@ -1249,6 +1249,7 @@ int CMMDVMHost::run() setMode(MODE_DMR); dmrBeaconIntervalTimer.start(); dmrBeaconDurationTimer.start(); + LogDebug("sending DMR Roaming Beacon (timed mode)"); } } break; @@ -1260,6 +1261,7 @@ int CMMDVMHost::run() if (!m_fixedMode && m_mode == MODE_IDLE) setMode(MODE_DMR); dmrBeaconDurationTimer.start(); + LogDebug("sending DMR Roaming Beacon (network mode)"); } } }