From: isaacs Date: Thu, 17 Dec 2009 22:06:56 +0000 (-0800) Subject: Remove two debug statements that are a bit much. X-Git-Tag: v0.1.22~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0ea2f9e04b411fa06277c478d2b2b28b47054873;p=platform%2Fupstream%2Fnodejs.git Remove two debug statements that are a bit much. --- diff --git a/src/node.js b/src/node.js index c57856a..500d7f4 100644 --- a/src/node.js +++ b/src/node.js @@ -790,11 +790,11 @@ function loadModule (request, parent) { var parentIdPath = path.dirname(parent.id + (path.filename(parent.filename).match(/^index\.(js|addon)$/) ? "/" : "")); id = path.join(parentIdPath, request); - debug("RELATIVE: requested:"+request+" set ID to: "+id+" from "+parent.id+"("+parentIdPath+")"); + // debug("RELATIVE: requested:"+request+" set ID to: "+id+" from "+parent.id+"("+parentIdPath+")"); paths = [path.dirname(parent.filename)]; } else { id = request; - debug("ABSOLUTE: id="+id); + // debug("ABSOLUTE: id="+id); paths = process.paths; }