diff --git a/lib/_linklist.js b/lib/_linklist.js index 08ecbea828..1b709d6fbd 100644 --- a/lib/_linklist.js +++ b/lib/_linklist.js @@ -1,6 +1,6 @@ 'use strict'; -const msg = require('internal/util').printDeprecationMessage; - module.exports = require('internal/linkedlist'); -msg('_linklist module is deprecated. Please use a userland alternative.'); +process.emitWarning( + '_linklist module is deprecated. Please use a userland alternative.', + 'DeprecationWarning'); diff --git a/lib/internal/util.js b/lib/internal/util.js index 7f93e1a2e0..dae45b0ebb 100644 --- a/lib/internal/util.js +++ b/lib/internal/util.js @@ -63,7 +63,10 @@ exports._deprecate = function(fn, msg) { var warned = false; function deprecated() { - warned = exports.printDeprecationMessage(msg, warned, deprecated); + if (!warned) { + warned = true; + process.emitWarning(msg, 'DeprecationWarning', deprecated); + } if (new.target) { return Reflect.construct(fn, arguments, new.target); } diff --git a/lib/module.js b/lib/module.js index fe9700f7a6..96f1cfc42e 100644 --- a/lib/module.js +++ b/lib/module.js @@ -196,10 +196,14 @@ Module._findPath = function(request, paths, isMain) { if (filename) { // Warn once if '.' resolved outside the module dir if (request === '.' && i > 0) { - warned = internalUtil.printDeprecationMessage( - 'warning: require(\'.\') resolved outside the package ' + - 'directory. This functionality is deprecated and will be removed ' + - 'soon.', warned); + if (!warned) { + warned = true; + process.emitWarning( + 'warning: require(\'.\') resolved outside the package ' + + 'directory. This functionality is deprecated and will be removed ' + + 'soon.', + 'DeprecationWarning'); + } } Module._pathCache[cacheKey] = filename; diff --git a/lib/sys.js b/lib/sys.js index a34ea0b899..c94b032c64 100644 --- a/lib/sys.js +++ b/lib/sys.js @@ -1,10 +1,9 @@ 'use strict'; -const util = require('internal/util'); - // the sys module was renamed to 'util'. // this shim remains to keep old programs working. // sys is deprecated and shouldn't be used module.exports = require('util'); -util.printDeprecationMessage('sys is deprecated. Use util instead.'); +process.emitWarning('sys is deprecated. Use util instead.', + 'DeprecationWarning');