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

A simple logging library that combines the simple APIs of Ruby's logger.rb and browser-js console.log()

Results 17 node-logger issues
Sort by recently updated
recently updated
newest added

Deprecation Warning: sys is deprecated. Use util instead.

``sys.print`` is not defined in nodejs ver 12. ```js $ node Welcome to Node.js v12.6.0. Type ".help" for more information. > const logger = require('logger').createLogger() undefined > (node:18732) [DEP0025] DeprecationWarning:...

line 32 of logger.js required 'sys', which is deprecated. Updated to require 'util'.

I got the following errors when trying to run logging: `(node:6264) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead.` `(node:6264) [DEP0026] DeprecationWarning: util.print is deprecated. Use console.log instead.` So did...

(node) sys is deprecated. Use util instead. nodejs/node-v0.x-archive#3577

Hey man, I've been using this library, but I had issue with this, sys is getting deprecated and we have to use util, please accept my changes. thanks

@quirkey, I know you're not maintaining this package so I'm not asking for support, but I'm curious, how did you manage to not-quite-publish this package to npm? ![image](https://user-images.githubusercontent.com/33569/82284060-eebab880-994c-11ea-8e68-4a7e090f336b.png)

I rewrote the source in typescript. Please check and see if there are any problems in the code. Deprecated module "sys" is replace with "util". I could not find a...

https://github.com/r3wt/log https://www.npmjs.com/package/@r3wt/log Same license with credit to this library, pr and feature requests welcome. its quite a bit different from this library but it is based on a fork i...

The module used to use the `sys` module which is now deprecated. I replaced it with `util` which isn't.