Interface WinstonLoggerContext

Winston logger context with specific data for logging

interface WinstonLoggerContext {
    action?: string;
    requestId?: string;
    scope?: string;
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

    Additional data

Properties

action?: string

Action where the message was logged

'createOutput'
requestId?: string

Request ID Special marker to identify request in logs

scope?: string

Scope where the message was logged

'VideoService'