mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Add some debug logging
This commit is contained in:
parent
e887ed5cad
commit
684a26f5be
1 changed files with 2 additions and 0 deletions
|
@ -71,6 +71,7 @@ local function manage_buffer(stanza, session)
|
|||
end
|
||||
|
||||
local function flush_buffer(data, session)
|
||||
session.log("debug", "Client sent something, flushing buffer once");
|
||||
session.conn:resume_writes();
|
||||
return data;
|
||||
end
|
||||
|
@ -109,6 +110,7 @@ module:hook("c2s-ondrain", function (event)
|
|||
if session.state == "inactive" and session.conn and session.conn and session.conn.pause_writes then
|
||||
session.csi_counter = 0;
|
||||
session.conn:pause_writes();
|
||||
session.log("debug", "Buffer flushed, resuming inactive mode");
|
||||
end
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue