From 7dc735171b86835bf8d9a88b78220ef23fb46cdf Mon Sep 17 00:00:00 2001 From: Yonle Date: Fri, 5 Apr 2024 10:35:00 +0700 Subject: [PATCH] http: make it a bit understandable Signed-off-by: Yonle --- http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.js b/http.js index 7a78f8d..665b4d7 100644 --- a/http.js +++ b/http.js @@ -71,7 +71,7 @@ server.on('request', (req, res) => { res.write(`\nI have ${wss.clients.size} clients currently connected to this bouncer${(process.env.CLUSTERS || config.clusters) > 1 ? " on this cluster" : ""}.\n`); - res.write(`\nBouncer statistics:`); + res.write(`\nAll bouncer activities in total:`); res.write(`\n- rx: ${globalStat.rx}`); res.write(`\n- tx: ${globalStat.tx}`); res.write(`\n- fail: ${globalStat.f}`);