mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_csi_simple: Improve debug logs by mentioing why the buffer gets flushed
This commit is contained in:
parent
684a26f5be
commit
ba9e505924
1 changed files with 5 additions and 1 deletions
|
@ -61,7 +61,11 @@ end
|
|||
|
||||
local function manage_buffer(stanza, session)
|
||||
local ctr = session.csi_counter or 0;
|
||||
if ctr >= queue_size or module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
|
||||
if ctr >= queue_size then
|
||||
session.log("debug", "Queue size limit hit, flushing buffer");
|
||||
session.conn:resume_writes();
|
||||
elseif module:fire_event("csi-is-stanza-important", { stanza = stanza, session = session }) then
|
||||
session.log("debug", "Important stanza, flushing buffer");
|
||||
session.conn:resume_writes();
|
||||
else
|
||||
stanza = with_timestamp(stanza, jid.join(session.username, session.host))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue