()
| 108 | } |
| 109 | |
| 110 | export 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 | |
| 120 | export function getSshChannel(): vscode.OutputChannel { |
| 121 | if (!sshChannel) { |
no test coverage detected