Remove extraneous logging message.

This commit is contained in:
Jonathan Naylor 2020-05-18 11:20:44 +01:00
parent eb4dcc22a7
commit 4eb534aab6
2 changed files with 1 additions and 3 deletions

View file

@ -1773,7 +1773,6 @@ void CMMDVMHost::setMode(unsigned char mode)
break;
case MODE_FM:
LogMessage("Mode set to FM");
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(false);
if (m_dmrNetwork != NULL)
@ -1812,7 +1811,6 @@ void CMMDVMHost::setMode(unsigned char mode)
break;
case MODE_LOCKOUT:
LogMessage("Mode set to Lockout");
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(false);
if (m_dmrNetwork != NULL)

View file

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20200512";
const char* VERSION = "20200518";
#endif