mod_csi_simple: Change debug message of client-triggered flush for coherence
authorKim Alvefur <zash@zash.se>
Sat, 09 May 2020 17:38:13 +0200
changeset 10832 c12ed21f877e
parent 10831 d8e83d94a99a
child 10833 67a09706e56e
mod_csi_simple: Change debug message of client-triggered flush for coherence It now matches other the other source of flush reason logging.
plugins/mod_csi_simple.lua
--- 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