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
Let's say I send objects as part of my extra arguments, something like:
extra
{ "prop1": "val1", "prop2": "val2", "prop3": "val3", }
If one of those values turns out to be undefined, e.g.:
undefined
{ "prop1": "val1", "prop2": undefined, "prop3": "val3", }
That value won't show up in Rollbar, the raw JSON in the occurrence would show:
{ "prop1": "val1", "prop3": "val3", }
Is this known and expected? We'd certainly prefer for it to be propagated and shown.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say I send objects as part of my
extra
arguments, something like:If one of those values turns out to be
undefined
, e.g.:That value won't show up in Rollbar, the raw JSON in the occurrence would show:
Is this known and expected? We'd certainly prefer for it to be propagated and shown.
The text was updated successfully, but these errors were encountered: