From d5ad113d1b16a3c96f367d2aad9cc27eee92527f Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Sun, 9 Mar 2014 22:34:45 +0000 Subject: [PATCH] Remove console.log debug --- red.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/red.js b/red.js index f012a89aa..ff11efbca 100644 --- a/red.js +++ b/red.js @@ -104,10 +104,8 @@ if (settings.httpAdminRoot !== false) { settings.httpAdminAuth = settings.httpAdminAuth || settings.httpAuth; } -console.log("1:"+settings.httpNodeRoot); if (settings.httpNodeRoot !== false) { settings.httpNodeRoot = formatRoot(settings.httpNodeRoot || settings.httpRoot || "/"); -console.log("2:"+settings.httpNodeRoot); settings.httpNodeAuth = settings.httpNodeAuth || settings.httpAuth; } @@ -133,11 +131,9 @@ if (settings.httpNodeRoot !== false && settings.httpNodeAuth) { ); } if (settings.httpAdminRoot !== false) { - console.log("Attaching admin root"); app.use(settings.httpAdminRoot,RED.httpAdmin); } if (settings.httpNodeRoot !== false) { - console.log(settings.httpNodeRoot); app.use(settings.httpNodeRoot,RED.httpNode); }