Skip to content

Commit

Permalink
Remove warning in 'sys' - too aggressive
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 3, 2010
1 parent 515f006 commit 6ce007e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/sys.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ var util = require("util");
var sysWarning;
if (!sysWarning) {
sysWarning = "The 'sys' module is now called 'util'. It should have a similar interface.";
util.error(sysWarning);
// Uncomment in 2011
//util.error(sysWarning);
}

exports.print = util.print;
Expand All @@ -15,4 +16,4 @@ exports.p = util.p;
exports.log = util.log;
exports.exec = util.exec;
exports.pump = util.pump;
exports.inherits = util.inherits;
exports.inherits = util.inherits;

0 comments on commit 6ce007e

Please sign in to comment.