udplogserver: Do not automatically add a new line to log outputs.

This commit is contained in:
CreeperMario 2017-08-19 21:23:20 +09:30
parent dd73b95579
commit 84d1957066

View File

@ -90,7 +90,7 @@ int main(int argc, char **argv)
if (recvd > 0) {
buffer[recvd] = 0;
std::cout << buffer << std::endl;
std::cout << buffer;
}
}
}