Skip to content
Snippets Groups Projects
Commit d4e678c8 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

tcp-handler: improve debug message when tcp-io-timeout is reached

parent 125e056a
No related branches found
No related tags found
No related merge requests found
......@@ -119,8 +119,8 @@ static void tcp_log_error(struct sockaddr_storage *ss, const char *operation, in
if (ret == KNOT_ETIMEOUT) {
char addr_str[SOCKADDR_STRLEN];
client_addr(ss, addr_str, sizeof(addr_str));
log_debug("TCP, %s, address %s (%s)", operation, addr_str,
knot_strerror(ret));
log_debug("TCP, failed to %s due to IO timeout, closing connection, address %s",
operation, addr_str);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment