net.server_epoll: Log debug message when a connection errors on read

It's confusingly quiet otherwise, even with maximum verboseness.

Thanks perflyst
This commit is contained in:
Kim Alvefur 2020-07-25 17:26:11 +02:00
parent 0314b7063c
commit 7c00bae93a

View file

@ -405,6 +405,11 @@ function interface:onreadable()
self:onincoming(partial, err);
end
if err ~= "timeout" then
if err == "closed" then
self:debug("Connection closed by remote");
else
self:debug("Read error, closing (%s)", err);
end
self:on("disconnect", err);
self:destroy()
return;