Remove unneeded warning message.

This commit is contained in:
Jonathan Naylor 2021-05-08 19:57:28 +01:00
parent e6fc679502
commit c0e3fd0a5b
1 changed files with 3 additions and 7 deletions

View File

@ -386,13 +386,9 @@ int CMMDVMHost::run()
}
if (m_fmEnabled && m_conf.getFMNetworkEnabled()) {
if (m_modem->getVersion() == 1U) {
LogWarning("FM networking enabled in the host but not available the modem firmware, disabling");
} else {
ret = createFMNetwork();
if (!ret)
return 1;
}
ret = createFMNetwork();
if (!ret)
return 1;
}
if (m_ax25Enabled && m_conf.getAX25NetworkEnabled()) {