HTTP error logging fixes

This commit is contained in:
Henrik Rydgård
2025-08-15 18:08:41 +02:00
parent 6c4ff15fce
commit f31a8f08ec
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ bool Buffer::FlushSocket(uintptr_t sock, double timeout, bool *cancelled) {
int sent = send(sock, &data[pos], end - pos, MSG_NOSIGNAL);
// TODO: Do we need some retry logic here, instead of just giving up?
if (sent < 0) {
ERROR_LOG(Log::IO, "FlushSocket failed to send: %d", errno);
ERROR_LOG(Log::IO, "FlushSocket failed to send: errno=%d", errno);
return false;
}
pos += sent;