Clarify "passing extra data"
See original GitHub issueAccording to the docs,
captureException
,context
,wrap
, andcaptureMessage
functions all allow passing additional data to be tagged onto the error, such as tags.
However, I don’t think this means arbitrary data. For example, you can’t do this:
Raven.captureMessage('Hello world', {planet: {name: 'Earth'}});
It would be nice if the docs were more clear on what additional data is allowed.
Issue Analytics
- State:
- Created 10 years ago
- Reactions:2
- Comments:17 (7 by maintainers)
Top Results From Across the Web
How to pass extra variables to an Ansible playbook - Red Hat
This can be done via the ability to pass extra variables to an Ansible playbook. This feature is available when using the Ansible...
Read more >How do I pass an extra parameter to the callback function in ...
Make startsWith accept the word to compare against and return a function which will then be used as filter/callback function:
Read more >Passing data between Activities using Intent in Android
In this tutorial, we will learn how to use Intent and then we will pass the data using Intent from one activity to...
Read more >Function pass by value vs. pass by reference
By definition, pass by value means you are making a copy in memory of the actual parameter's value that is passed in, a...
Read more >How to Pass Variables to Ansible Playbook in command line?
Let me clarify that this is specific for variables, there is another way to look for environment variables The command line parameter is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@mattrobenolt does this work in the same way for captureException? and btw, I think it would be better if in the docs you specify something like:
Ah, I’ll clarify in documentation. You can actually pass arbitrary information like that through
extra
.And you get this inside Sentry: