diff --git a/bouncer.js b/bouncer.js index cbd645e..e107f5d 100644 --- a/bouncer.js +++ b/bouncer.js @@ -235,7 +235,7 @@ function onClientDisconnect() { const orphanSessNum = howManyOrphanSess(); const max = max_orphan_sess || 0; if (orphanSessNum > max) { - console.log(process.pid, `There are ${orphanSessNum} orphan sessions. I will clear ${orphanSessNum - max} of orphan sessions.`); + console.log(process.pid, `There are ${orphanSessNum} orphan sessions. I will clear ${orphanSessNum - max} orphan sessions.`); clearOrphanSess(orphanSessNum - max); } }