We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Before Node 8, console.debug is undefined.
console.debug
Now using node v6.11.2 (npm v3.10.10) > console.debug('hello') TypeError: console.debug is not a function
It will default to baseLogger["info"] https://github.com/ice-services/moleculer/blob/943ce4724b054284c1051ebad7244e0755bd8759/src/logger.js#L87 However, in Node 8, console.debug is exposed and doesn't print anything.
baseLogger["info"]
Now using node v8.4.0 (npm v5.3.0) > console.debug [Function: debug] > console.debug('hello world') undefined >
So the logger.debug is not working anymore.
logger.debug
Maybe relate to: nodejs/node#12675
The text was updated successfully, but these errors were encountered:
Thank you!
Sorry, something went wrong.
4431b29
No branches or pull requests
Before Node 8,
console.debug
is undefined.It will default to
baseLogger["info"]
https://github.com/ice-services/moleculer/blob/943ce4724b054284c1051ebad7244e0755bd8759/src/logger.js#L87
However, in Node 8,
console.debug
is exposed and doesn't print anything.So the
logger.debug
is not working anymore.Maybe relate to: nodejs/node#12675
The text was updated successfully, but these errors were encountered: