()
| 101 | } |
| 102 | |
| 103 | private async openExtensionLog(): Promise<void> { |
| 104 | const doc = await vs.workspace.openTextDocument(vs.Uri.file(getExtensionLogPath())); |
| 105 | await vs.window.showTextDocument(doc); |
| 106 | } |
| 107 | |
| 108 | private async stopLogging(): Promise<void> { |
| 109 | if (this.currentLogCompleter) |
nothing calls this directly
no test coverage detected