Remove two debug statements that are a bit much.
authorisaacs <i@foohack.com>
Thu, 17 Dec 2009 22:06:56 +0000 (14:06 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Fri, 18 Dec 2009 23:14:50 +0000 (00:14 +0100)
src/node.js

index c57856a..500d7f4 100644 (file)
@@ -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;
   }