From 5390d9bc66486881ad802f7c3e6e1ba2054f0bd8 Mon Sep 17 00:00:00 2001 From: Nicholas O'Leary Date: Thu, 19 Sep 2013 17:01:00 +0100 Subject: [PATCH] console.log in haste... remove at leisure --- nodes/io/21-httpin.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/nodes/io/21-httpin.js b/nodes/io/21-httpin.js index b0bbd96e3..c6234990f 100644 --- a/nodes/io/21-httpin.js +++ b/nodes/io/21-httpin.js @@ -40,7 +40,6 @@ function HTTPIn(n) { RED.nodes.registerType("http in",HTTPIn); HTTPIn.prototype.close = function() { - console.log(RED.app.routes[this.method]); var routes = RED.app.routes[this.method]; for (var i in routes) { if (routes[i].path == this.url) { @@ -48,6 +47,5 @@ HTTPIn.prototype.close = function() { break; } } - console.log(RED.app.routes[this.method]); }