ErrorEvent

The game had an expected error or issue

Name
Type
Select
Backend name
Description

errorType

ErrorEventType

Required

error_type

The error type

message

string

Required

message

The message to print to help debug.

additionalData

Dictionary<string, object>

Optional

additional_data

Any additional information

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);

Last updated