MCPcopy Create free account
hub / github.com/microsoft/vscode-cpptools / logDebugProtocol

Function logDebugProtocol

Extension/src/logger.ts:150–157  ·  view source on GitHub ↗
(output: DebugProtocolParams)

Source from the content-addressed store, hash-verified

148}
149
150export function logDebugProtocol(output: DebugProtocolParams): void {
151 if (!debugChannel) {
152 debugChannel = vscode.window.createOutputChannel(`${localize("c.cpp.debug.protocol", "C/C++ Debug Protocol")}`);
153 }
154 debugChannel.appendLine("");
155 debugChannel.appendLine("************************************************************************************************************************");
156 debugChannel.append(`${output}`);
157}
158
159export interface ShowWarningParams {
160 localizeStringParams: LocalizeStringParams;

Callers

nothing calls this directly

Calls 2

appendLineMethod · 0.80
appendMethod · 0.65

Tested by

no test coverage detected