1
0
Fork 0

Edit file log print

Revised log print file to be used with the DG9VH dashboard
This commit is contained in:
LucaMarche IZ1MLT 2018-06-04 14:42:40 +02:00 committed by GitHub
parent 3385796d22
commit 62c36f3a7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -772,6 +772,8 @@ void CYSFGateway::startupLinking()
}
}
}
if (m_startup.empty())
LogMessage("No connection startup");
}
void CYSFGateway::readFCSRoomsFile(const std::string& filename)

View file

@ -166,7 +166,11 @@ void CYSFNetwork::clock(unsigned int ms)
return;
if (::memcmp(buffer, "YSFP", 4U) == 0 && !m_linked) {
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;
}