mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-01-02 06:29:59 +01:00
Edit file log print
Revised log print file to be used with the DG9VH dashboard
This commit is contained in:
parent
3385796d22
commit
62c36f3a7c
|
|
@ -772,6 +772,8 @@ void CYSFGateway::startupLinking()
|
|||
}
|
||||
}
|
||||
}
|
||||
if (m_startup.empty())
|
||||
LogMessage("No connection startup");
|
||||
}
|
||||
|
||||
void CYSFGateway::readFCSRoomsFile(const std::string& filename)
|
||||
|
|
|
|||
|
|
@ -166,7 +166,11 @@ void CYSFNetwork::clock(unsigned int ms)
|
|||
return;
|
||||
|
||||
if (::memcmp(buffer, "YSFP", 4U) == 0 && !m_linked) {
|
||||
LogMessage("Linked to %s", m_name.c_str());
|
||||
if (strcmp(m_name.c_str(),"MMDVM")== 0)
|
||||
LogMessage("Link successful to %s", m_name.c_str());
|
||||
else
|
||||
LogMessage("Linked to %s", m_name.c_str());
|
||||
|
||||
m_linked = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue