class TeakLogEvent

Describes a semi-structured log event that is reported from the native Teak SDK.

Methods

ToString

Returns a string that represents the current object.

override string ToString();

Return

A string that represents the current object.

Properties

Name Type Description Access

RunId

string

A unique string that is assigned when the app starts and stays until the app is closed.

Get

EventId

long

This is a sequential number that, when combined with 'RunId', uniquely identifies this log event.

Get

TimeStamp

long

The time at which this log event was generated.

Get

EventType

string

The type of log event, assigned by the SDK.

Get

LogLevel

The log level.

Get

EventData

Dictionary<string, object>

Semi-structured data containing the log event.

Get

Enums

Level

Log level, indicating the sevarity of the log message

Name Description

VERBOSE

Verbose log event, these events are mostly debugging related.

INFO

Informational log event, used to inform the developer.

WARN

Warning log event, this is something the developer should take notice of and fix.

ERROR

Error log event, an error has occurred and the developer should investigate.