minor updates

This commit is contained in:
root
2024-05-11 13:44:45 +00:00
parent a55d3c4b9b
commit b449a54fda
289 changed files with 1085 additions and 431 deletions
+1 -1
View File
@@ -434,7 +434,7 @@ void async_handle_socket_errno(struct conn_client_s *c)
} else if(errno == EPIPE) {
hm_log(LOG_ERR, c->log, "{Connector} Broken pipe to backend (EPIPE)");
} else {
hm_log(LOG_ERR, c->log, "{Connector} errno: %d", errno);
hm_log(LOG_ERR, c->log, "{Connector} errno: %d (%s)", errno, strerror(errno));
}
}