Interface ILogPayloadBase

The base log payload type.

interface ILogPayloadBase {
    data: unknown;
    level: LogLevel;
    type: string;
}

Hierarchy (View Summary)

Properties

Properties

data: unknown

Data

level: LogLevel

Log level

type: string

Type of log data.