From 8dc55442b174a94dbe2090f445cc696739f2d910 Mon Sep 17 00:00:00 2001 From: jomo Date: Mon, 20 Apr 2015 01:12:16 +0200 Subject: [PATCH] remove debug log --- lib/server.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/server.js b/lib/server.js index 3594f5e..605b338 100644 --- a/lib/server.js +++ b/lib/server.js @@ -53,7 +53,6 @@ function path_list(pathname) { // URL decode list[i] = querystring.unescape(list[i]); } - logging.debug("path:", list); return list; } @@ -67,7 +66,6 @@ function requestHandler(req, res) { var local_path = req.url.path_list[0]; logging.log(req.id, req.method, req.url.href); - logging.debug(req.id, req.url.path_list); if (req.method === "GET" || req.method === "HEAD") { try { switch (local_path) {