Fix message

This commit is contained in:
Baptiste Wicht 2016-10-03 20:47:00 +02:00
parent 694011d73a
commit 8741ac25d0
No known key found for this signature in database
GPG Key ID: C5566B6C7F884532

View File

@ -900,7 +900,7 @@ std::expected<size_t> network::wait_for_packet(char* buffer, socket_fd_t socket_
return std::make_unexpected<size_t>(std::ERROR_SOCKET_NOT_LISTEN);
}
logging::logf(logging::log_level::TRACE, "network: %u wait for packet on socket %u\n", scheduler::get_pid(), socket_fd);
logging::logf(logging::log_level::TRACE, "network: %u wait for packet on socket (with timeout) %u\n", scheduler::get_pid(), socket_fd);
if(socket.listen_packets.empty()){
if(!ms){