From 6ce007e89a54084edd42e44a85a0c46702ad6639 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 2 Nov 2010 21:20:28 -0700 Subject: [PATCH] Remove warning in 'sys' - too aggressive --- lib/sys.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/sys.js b/lib/sys.js index 304207ced1d..50fc884d34c 100644 --- a/lib/sys.js +++ b/lib/sys.js @@ -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; @@ -15,4 +16,4 @@ exports.p = util.p; exports.log = util.log; exports.exec = util.exec; exports.pump = util.pump; -exports.inherits = util.inherits; \ No newline at end of file +exports.inherits = util.inherits;