Add a newline to debug statement

This commit is contained in:
Jack Garrard 2022-10-26 03:31:32 -07:00
parent 53f91b8695
commit bf646b2b3d
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ void Client::readFunc() {
}
case PacketType::UDPINIT: {
UdpInit* initPacket = (UdpInit*)curPacket;
Logger::log("Received udp init packet from server");
Logger::log("Received udp init packet from server\n");
sInstance->mSocket->setPeerUdpPort(initPacket->port);
sendUdpHolePunch();