aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-10-05 18:10:12 +0200
committerKim Alvefur <zash@zash.se>2019-10-05 18:10:12 +0200
commit85a40d85b6ab3f7675ad9816cee402534afe29a9 (patch)
treed858eb410bad6deda7c2ccc3e66ef9b81045455b
parentcore.s2smanager: Fix traceback due to mixup with to/from (diff)
downloadprosody-85a40d85b6ab3f7675ad9816cee402534afe29a9.tar.xz
prosody-85a40d85b6ab3f7675ad9816cee402534afe29a9.zip
net.server_epoll: Log size of partial writes (debug)
-rw-r--r--net/server_epoll.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/server_epoll.lua b/net/server_epoll.lua
index 62db6c86d..991383ecc 100644
--- a/net/server_epoll.lua
+++ b/net/server_epoll.lua
@@ -420,6 +420,7 @@ function interface:onwritable()
self:ondrain(); -- Be aware of writes in ondrain
return;
elseif partial then
+ self:debug("Sent %d out of %d buffered bytes", partial, #data);
buffer[1] = data:sub(partial+1);
for i = #buffer, 2, -1 do
buffer[i] = nil;