ErrorEvent
Introduction
Backend Name:
error_event
Description: The game had an expected error or issue
Event Type:
Debug
Priority:
P0
Parameters
Name | Type | Select | Backend name | Description |
---|---|---|---|---|
additionalData | Dictionary |
Optional | additional_data | Any additional information |
errorType | ErrorEventType | Required | error_type | The error type |
message | string | Required | message | The message to print to help debug. |
Code examples:
Dictionary<string, object> additionalData = new Dictionary<string, object>
{
{ "Error Code", -1 },
{ "elapsed time in-game", 250.26 },
};
LionAnalytics.ErrorEvent(ErrorEventType.Error, "null Occurred", additionalData);