Theia API Documentation v1.65.0
    Preparing search index...

    Represents the debug console.

    interface DebugConsole {
        append(value: string): void;
        appendLine(value: string): void;
    }
    Index

    Methods

    • Append the given value to the debug console.

      Parameters

      • value: string

        A string, falsy values will not be printed.

      Returns void

    • Append the given value and a line feed character to the debug console.

      Parameters

      • value: string

        A string, falsy values will be printed.

      Returns void