mod_csi_simple: Change debug message of client-triggered flush for coherence

It now matches other the other source of flush reason logging.
This commit is contained in:
Kim Alvefur 2020-05-09 17:38:13 +02:00
parent e1a3982654
commit 4053cca7dc

View file

@ -116,7 +116,7 @@ local function manage_buffer(stanza, session)
end
local function flush_buffer(data, session)
session.log("debug", "Client sent something, flushing buffer once (queue size is %d)", session.csi_counter);
session.log("debug", "Flushing buffer (%s; queue size is %d)", "client activity", session.csi_counter);
session.conn:resume_writes();
return data;
end