VSCode-Logger API - v1.7.3
    Preparing search index...

    Interface LogSessionCallbacks

    Callbacks surfaced by a log session to its consumer.

    interface LogSessionCallbacks {
        onClose: () => void;
        onError: (message: string) => void;
        onHostKeyMismatch?: (
            details: { expected: string; received: string },
        ) => void;
        onLine: (line: string) => void;
        onStatus: (message: string) => void;
    }
    Index

    Properties

    onClose: () => void
    onError: (message: string) => void
    onHostKeyMismatch?: (details: { expected: string; received: string }) => void
    onLine: (line: string) => void
    onStatus: (message: string) => void