Interface DebugLogEntry

A single structured debug log entry emitted by the Viam SDK.

interface DebugLogEntry {
    connectionId?: string;
    event: string;
    timestamp: Date;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

connectionId?: string

The ID of the connection this event relates to, when applicable.

event: string

The type of event. One of: dial_started, dial_success, dial_failed, grpc_request, grpc_response, client_closed, ice_disconnected.

timestamp: Date

The time at which the event occurred.