1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2026-06-05 15:14:37 -04:00

Use protocol name instead of number in logs

This commit is contained in:
phl0
2017-03-30 09:32:17 +02:00
parent f4394c41fe
commit f1f2b605b1
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ void CPeers::AddPeer(CPeer *peer)
// append peer to reflector peer list
m_Peers.push_back(peer);
std::cout << "New peer " << peer->GetCallsign() << " at " << peer->GetIp()
<< " added with protocol " << peer->GetProtocol() << std::endl;
<< " added with protocol " << peer->GetProtocolName() << std::endl;
// and append all peer's client to reflector client list
// it is double lock safe to lock Clients list after Peers list
CClients *clients = g_Reflector.GetClients();