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
null
This cost me more than an hour of debugging now.
function test() { } logger.info(test)
will log null which is confusing. It should log function or the functions name.
function
The text was updated successfully, but these errors were encountered:
You are right, in my opinion it should print an empty object:"{}" or [function], printing null or the name of the object could be confusing....
Sorry, something went wrong.
console.log prints the type (and name): function name()
console.log
function name()
Fixed in 592e139
No branches or pull requests
This cost me more than an hour of debugging now.
will log
null
which is confusing. It should logfunction
or the functions name.The text was updated successfully, but these errors were encountered: