Skip to content

Commit

Permalink
Suppress DMR Roaming Beacon debug messages in simplex mode; refinemen…
Browse files Browse the repository at this point in the history
…t to PR #753 merge.
  • Loading branch information
Chipster committed Dec 5, 2022
1 parent 2f1144a commit adb67ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions MMDVMHost.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,8 @@ int CMMDVMHost::run()
setMode(MODE_DMR);
dmrBeaconIntervalTimer.start();
dmrBeaconDurationTimer.start();
LogDebug("sending DMR Roaming Beacon (timed mode)");
if (m_duplex)
LogDebug("sending DMR Roaming Beacon (timed mode)");
}
}
break;
Expand All @@ -1261,7 +1262,8 @@ int CMMDVMHost::run()
if (!m_fixedMode && m_mode == MODE_IDLE)
setMode(MODE_DMR);
dmrBeaconDurationTimer.start();
LogDebug("sending DMR Roaming Beacon (network mode)");
if (m_duplex)
LogDebug("sending DMR Roaming Beacon (network mode)");
}
}
}
Expand Down

0 comments on commit adb67ff

Please sign in to comment.