diff --git a/DMRNetwork.cpp b/DMRNetwork.cpp index 190e361..698ddb3 100644 --- a/DMRNetwork.cpp +++ b/DMRNetwork.cpp @@ -383,7 +383,7 @@ void CDMRNetwork::clock(unsigned int ms) } } else if (::memcmp(m_buffer, "MSTNAK", 6U) == 0) { if (m_status == RUNNING) { - LogWarning("DMR, The master is restarting, logging back in"); + LogWarning("DMR, Login to the master has failed, retrying login ..."); m_status = WAITING_LOGIN; m_timeoutTimer.start(); m_retryTimer.start(); @@ -391,7 +391,7 @@ void CDMRNetwork::clock(unsigned int ms) /* Once the modem death spiral has been prevented in Modem.cpp the Network sometimes times out and reaches here. We want it to reconnect so... */ - LogError("DMR, Login to the master has failed, retrying ..."); + LogError("DMR, Login to the master has failed, retrying network ..."); close(); open(); return;