Removing console.log()
authorDarren <darren@darrenwhitlen.com>
Wed, 4 Jun 2014 16:35:30 +0000 (17:35 +0100)
committerDarren <darren@darrenwhitlen.com>
Wed, 4 Jun 2014 16:35:30 +0000 (17:35 +0100)
server/httphandler.js

index 477992bfafd7e409b455ae0407ca26456c2e7a10..1ee9d00d68f892b03f411e32e32f8c301f975269 100644 (file)
@@ -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';
     }