-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
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
console.debug
eats logging output in node 8
#134
Labels
Comments
It seems like this method is not yet implemented by Node. See nodejs/node#12675 |
OK so about
|
From the documentation, |
I think we should not rely on inspecting the |
I'm on it, I'll also refactor stuffs a bit ;-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Before node 8,
console.debug
did not exist, so the logger defaulted toconsole.log
.In node 8,
console.debug
exists, but does not log its arguments (I guess it can be done with an env variable or something).It's not documented yet (https://t.co/JHrEGE3kT3), so I don't know how to tell it to display logs when
CLEVER_VERBOSE
is set.The text was updated successfully, but these errors were encountered: