aboutsummaryrefslogtreecommitdiffstats
path: root/net
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
commit153ebfe5d719d50312629bb9475bde5500f1da6e (patch)
treed858eb410bad6deda7c2ccc3e66ef9b81045455b /net
parentfb13625e08b83f4c1886e90963aeda49137c04ab (diff)
downloadprosody-153ebfe5d719d50312629bb9475bde5500f1da6e.tar.gz
prosody-153ebfe5d719d50312629bb9475bde5500f1da6e.zip
net.server_epoll: Log size of partial writes (debug)
Diffstat (limited to 'net')
-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 62db6c86..991383ec 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;