ErrorEvent

Introduction

  • Backend Name: error_event

  • Description: The game had an expected error or issue

  • Event Type: Debug

  • Priority: P0

Parameters

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