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
For whatever reason, error objects in node ~10 don't have keys, causing the log function to reject them as metadata, I'm proposing a small change:
from:
if (meta && typeof meta === 'object' && Object.keys(meta).length === 0) { meta = false; }
to:
if (meta && typeof meta === 'object' && (Object.keys(meta).length === 0) && (!util.isError(meta))) { meta = false; }
I'll submit a PR shortly,
Thanks! David
The text was updated successfully, but these errors were encountered:
oops, this was addressed in PR #44 ( #44 )
Sorry, something went wrong.
No branches or pull requests
For whatever reason, error objects in node ~10 don't have keys, causing the log function to reject them as metadata, I'm proposing a small change:
from:
to:
I'll submit a PR shortly,
Thanks!
David
The text was updated successfully, but these errors were encountered: