From 91637c13f9f585b3e4cff9d2d02902b9ad1f842a Mon Sep 17 00:00:00 2001 From: Yonle Date: Wed, 3 Jan 2024 23:54:44 +0700 Subject: [PATCH] g r a m m a r Signed-off-by: Yonle --- bouncer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bouncer.js b/bouncer.js index 278fd8e..4f0bdb2 100644 --- a/bouncer.js +++ b/bouncer.js @@ -221,7 +221,7 @@ function onClientDisconnect() { const orphanSessNum = howManyOrphanSess(); const max = max_orphan_sess || 0; if (orphanSessNum > max) { - console.log(process.pid, `There are ${orphanSessNum} of orphan session. I will clear ${orphanSessNum - max} of orphan sessions.`); + console.log(process.pid, `There are ${orphanSessNum} orphan sessions. I will clear ${orphanSessNum - max} of orphan sessions.`); clearOrphanSess(orphanSessNum - max); } }