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

NameTypeSelectBackend nameDescription
additionalDataDictionaryOptionaladditional_dataAny additional information
messagestringRequiredmessageThe 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);