Skip to content

Commit 0ea2f9e

Browse files
isaacsry
isaacs
authored andcommitted
Remove two debug statements that are a bit much.
1 parent 6301f18 commit 0ea2f9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,11 +790,11 @@ function loadModule (request, parent) {
790790
var parentIdPath = path.dirname(parent.id +
791791
(path.filename(parent.filename).match(/^index\.(js|addon)$/) ? "/" : ""));
792792
id = path.join(parentIdPath, request);
793-
debug("RELATIVE: requested:"+request+" set ID to: "+id+" from "+parent.id+"("+parentIdPath+")");
793+
// debug("RELATIVE: requested:"+request+" set ID to: "+id+" from "+parent.id+"("+parentIdPath+")");
794794
paths = [path.dirname(parent.filename)];
795795
} else {
796796
id = request;
797-
debug("ABSOLUTE: id="+id);
797+
// debug("ABSOLUTE: id="+id);
798798
paths = process.paths;
799799
}
800800

0 commit comments

Comments
 (0)