mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
0314b7063c
commit
7c00bae93a
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue