Plain text log payload.

interface ITextLog {
    data: string;
    level: LogLevel;
    type: "text";
}

Hierarchy (view full)

Properties

Properties

data: string

Log data as plain text.

level: LogLevel

Log level

type: "text"

Type of log data.