MCPcopy Index your code
hub / github.com/microsoft/vscode-cpptools / getCrashCallStacksChannel

Function getCrashCallStacksChannel

Extension/src/logger.ts:110–118  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

108}
109
110export function getCrashCallStacksChannel(): vscode.OutputChannel {
111 if (!crashCallStacksChannel) {
112 crashCallStacksChannel = vscode.window.createOutputChannel(localize("c.cpp.crash.call.stacks.title", "C/C++ Crash Call Stacks"));
113 crashCallStacksChannel.appendLine(localize({ key: "c.cpp.crash.call.stacks.description", comment: ["{0} is a URL."] },
114 "A C/C++ extension process has crashed. The crashing process name, date/time, signal, and call stack are below -- it would be helpful to include that in a bug report at {0}.",
115 "https://github.com/Microsoft/vscode-cpptools/issues"));
116 }
117 return crashCallStacksChannel;
118}
119
120export function getSshChannel(): vscode.OutputChannel {
121 if (!sshChannel) {

Callers 1

handleCrashFileReadFunction · 0.90

Calls 1

appendLineMethod · 0.80

Tested by

no test coverage detected