DebugEvent
Introduction
Backend Name:
debug_event
Description: Anything happened which is not covered by other events but is needed to debug or understand a situation
Event Type:
Debug
Priority:
P5
Parameters
Name | Type | Select | Backend name | Description |
---|---|---|---|---|
additionalData | Dictionary |
Optional | additional_data | Any additional information |
message | string | Required | message | The message to print to help debug. |
Code example:
Dictionary<string, object> additionalData = new Dictionary<string, object>
{
{ "Error Code", -1 },
{ "elapsed time in-game : {0}", 250.26 },
};
LionAnalytics.DebugEvent("Some Debug string", additionalData);