Comment on page
SDK events
In case of an error in the SDKs, custom events are fired, informing the
eventId
and also the reason for the error.Types of events triggered by the SDK.
Type | Description |
capture_invalid | Triggered when an error occurs in some validation performed by the SDK. |
capture_failed | Triggered when an error occurs that is not handled by the SDK. |
sdk.addEventListener('capture_invalid', (e) => console.log(e.detail));
The return will be a CustomEvent object containing the details and properties of the event.
{
"eventId": "IS_ALIVE_FALSE",
"error": {
"isAlive": false
}
}
Last modified 1yr ago