MCPcopy Index your code
hub / github.com/coderoad/coderoad-vscode / getOutputChannel

Function getOutputChannel

src/services/logger/output.ts:9–14  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

7 } = {}
8
9export const getOutputChannel = (name: string): vscode.OutputChannel => {
10 if (!channels[name]) {
11 channels[name] = vscode.window.createOutputChannel(name)
12 }
13 return channels[name]
14}
15
16interface ChannelOutput {
17 channel: string

Callers 4

index.tsFile · 0.90
addOutputFunction · 0.85
showOutputFunction · 0.85
clearOutputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected