From: Darren Date: Wed, 4 Jun 2014 16:35:30 +0000 (+0100) Subject: Removing console.log() X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9c0fa2a30aafbf8a0caac1e8ba7f27f75b49af4e;p=KiwiIRC.git Removing console.log() --- diff --git a/server/httphandler.js b/server/httphandler.js index 477992b..1ee9d00 100644 --- a/server/httphandler.js +++ b/server/httphandler.js @@ -34,7 +34,6 @@ HttpHandler.prototype.serve = function (request, response) { }); // Any requests for /base_path/* to load the index file - console.log(request.url, base_path); if (request.url.toLowerCase().indexOf(base_path.toLowerCase()) === 0) { request.url = '/index.html'; }