Software /
code /
prosody
Changeset
10828:c12ed21f877e
mod_csi_simple: Change debug message of client-triggered flush for coherence
It now matches other the other source of flush reason logging.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 09 May 2020 17:38:13 +0200 |
parents | 10827:d8e83d94a99a |
children | 10829:67a09706e56e |
files | plugins/mod_csi_simple.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_csi_simple.lua Sat May 09 17:07:43 2020 +0200 +++ b/plugins/mod_csi_simple.lua Sat May 09 17:38:13 2020 +0200 @@ -116,7 +116,7 @@ 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