Remove silly unlinking message.

This commit is contained in:
Jonathan Naylor 2016-10-18 17:52:29 +01:00
parent 149f7d33bb
commit 80f79122ba
1 changed files with 3 additions and 1 deletions

View File

@ -272,7 +272,9 @@ void CP25Gateway::run()
// If we're unlinking or changing reflectors, unlink from the current one
if (dstId == 9999U || reflector != NULL) {
std::string callsign = lookup->find(srcId);
LogMessage("Unlinked from reflector %u by %s", currentId, callsign.c_str());
if (currentId != 9999U)
LogMessage("Unlinked from reflector %u by %s", currentId, callsign.c_str());
if (currentId != 9999U) {
remoteNetwork.writeUnlink(currentAddr, currentPort);