DebugEvent

Anything happened which is not covered by other events but is needed to debug or understand a situation

Name
Type
Select
Backend name
Description

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 : {0}", 250.26 },
};
LionAnalytics.DebugEvent("Some Debug string", additionalData);

Last updated