(output: DebugProtocolParams)
| 148 | } |
| 149 | |
| 150 | export 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 | |
| 159 | export interface ShowWarningParams { |
| 160 | localizeStringParams: LocalizeStringParams; |
nothing calls this directly
no test coverage detected