From 9cd44bb2b683446531306bbcff8739fc3526d02c Mon Sep 17 00:00:00 2001 From: Sakthipriyan Vairamani Date: Sat, 13 Jun 2015 16:44:39 +0000 Subject: util: prepend '(node) ' to deprecation messages Changes included in this commit are 1. Making the deprecation messages consistent. The messages will be in the following format x is deprecated. Use y instead. If there is no alternative for `x`, then the ` Use y instead.` part will not be there in the message. 2. All the internal deprecation messages are printed with the prefix `(node) `, except when the `--trace-deprecation` flag is set. Fixes: https://github.com/nodejs/io.js/issues/1883 PR-URL: https://github.com/nodejs/io.js/pull/1892 Reviewed-By: Roman Reiss --- lib/http.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/http.js') diff --git a/lib/http.js b/lib/http.js index a9cfeddeea..cead865749 100644 --- a/lib/http.js +++ b/lib/http.js @@ -1,6 +1,7 @@ 'use strict'; const util = require('util'); +const internalUtil = require('internal/util'); const EventEmitter = require('events').EventEmitter; @@ -91,9 +92,8 @@ Client.prototype.request = function(method, path, headers) { return c; }; -exports.Client = util.deprecate(Client, - 'http.Client will be removed soon. Do not use it.'); +exports.Client = internalUtil.deprecate(Client, 'http.Client is deprecated.'); -exports.createClient = util.deprecate(function(port, host) { +exports.createClient = internalUtil.deprecate(function(port, host) { return new Client(port, host); -}, 'http.createClient is deprecated. Use `http.request` instead.'); +}, 'http.createClient is deprecated. Use http.request instead.'); -- cgit v1.2.3