An item logged by the log service.

interface LogNotificationItem {
    error?: Error;
    message?: string;
    shortInfo?: string;
    [key: string]: any;
}

Indexable

  • [key: string]: any

    way to add additional information to a log entry

Properties

error?: Error

Error.

message?: string

Log message.

shortInfo?: string

Short info.