[ntcore] Fix typo in NetworkServer client connect message (#4512)

This commit is contained in:
Peter Johnson
2022-10-23 20:45:01 -07:00
committed by GitHub
parent c970011ccc
commit 023a5989f8

View File

@@ -287,7 +287,7 @@ ServerConnection3::ServerConnection3(std::shared_ptr<uv::Stream> stream,
m_info.remote_id = name;
m_info.protocol_version = proto;
m_server.AddConnection(this, m_info);
INFO("CONNECTED NT4 client '{}' (from {})", name, m_connInfo);
INFO("CONNECTED NT3 client '{}' (from {})", name, m_connInfo);
},
[this](uint32_t repeatMs) { UpdatePeriodicTimer(repeatMs); });