* Add data which will be accessible during event processing but won't get sent to Sentry.
(newData: SdkProcessingMetadata)
| 663 | * Add data which will be accessible during event processing but won't get sent to Sentry. |
| 664 | */ |
| 665 | public setSDKProcessingMetadata(newData: SdkProcessingMetadata): this { |
| 666 | this._sdkProcessingMetadata = merge(this._sdkProcessingMetadata, newData, 2); |
| 667 | return this; |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * Add propagation context to the scope, used for distributed tracing |
no test coverage detected