-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Can enable synthetic traces globally via stacktrace: true (fixes #743) #763
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool
var data = objectMerge({ | ||
message: msg + '' // Make sure it's actually a string | ||
}, options); | ||
|
||
if (options && options.stacktrace) { | ||
if (this._globalOptions.stacktrace || (options && options.stacktrace)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
still need (options && here, now that options is checked above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tru
Nice, when will it be available in a tagged version? |
@romainneutron Looks like it's in 3.9 now! |
Sorry for the delay on this – many Sentry developers (myself included) were out on holidays over the past few weeks, and I generally err on making sure we're all available when pushing releases. |
@benvinegar thank you! Can you also update documentation for this? |
cc @MaxBittker