From 4e2343c6b5656ba9ca2faa44af7cb4b3634a37b8 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 11 Nov 2011 09:18:31 -0800 Subject: [PATCH] Fixes #2073. Cluster should be silent. --- lib/cluster.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cluster.js b/lib/cluster.js index 359fc813d92..cc2f98cd5b6 100644 --- a/lib/cluster.js +++ b/lib/cluster.js @@ -100,7 +100,7 @@ function handleWorkerMessage(worker, message) { switch (message.cmd) { case 'online': - console.log("Worker " + worker.pid + " online"); + debug("Worker " + worker.pid + " online"); worker.online = true; break;