restify
Version:
REST framework
20 lines (17 loc) • 719 B
JavaScript
;
function deprecationWarnings(server) {
// deprecation for domains and next.ifError
if (server.handleUncaughtExceptions === true) {
server.log.warn(
[
'DEPRECATION WARNING: Due to deprecation of the domain module',
'in node.js, all features in restify that depend on it have been',
'deprecated as well. This includes `handleUncaughtExceptions` and',
'`next.ifError()`. They will continue to work in 5.x, but',
'consider them unsupported and likely to be removed from future',
'versions of restify.'
].join(' ')
);
}
}
module.exports = deprecationWarnings;