node-logger icon indicating copy to clipboard operation
node-logger copied to clipboard

DeprecationWarning: sys is deprecated. Use util instead.

Open ghost opened this issue 7 years ago • 4 comments

(node) sys is deprecated. Use util instead.

nodejs/node-v0.x-archive#3577

ghost avatar Feb 02 '18 08:02 ghost

Noticed that there is already a PR for that. Can disregard this one.

ghost avatar Feb 02 '18 08:02 ghost

I have the same issue

ghost avatar Jun 08 '18 13:06 ghost

This appears to still be an issue?

13:50:05 CRITICAL [app] (node:53916) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead.

ricardoee avatar Sep 19 '19 12:09 ricardoee

One can fix this warning at their personal project. Its a manual process for fixing this issue in a individual project. Go to your node modules folder find the logger folder inside it. Inside the logger folder you will find a logger.js file. Open the logger.js file and do as following code suggests:- var sys=require('sys') -----------> var sys=require('util')
means replace the code on LHS via code on RHS

mach666 avatar May 15 '21 06:05 mach666