From 0ea2f9e04b411fa06277c478d2b2b28b47054873 Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 17 Dec 2009 14:06:56 -0800 Subject: [PATCH] Remove two debug statements that are a bit much. --- src/node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.7.4