(
message: string,
...additionalMessages: string[]
)
| 116 | } |
| 117 | |
| 118 | public async writeAndShowError( |
| 119 | message: string, |
| 120 | ...additionalMessages: string[] |
| 121 | ): Promise<void> { |
| 122 | this.writeError(message, ...additionalMessages); |
| 123 | |
| 124 | const choice = await window.showErrorMessage(message, "Show Logs"); |
| 125 | if (choice !== undefined) { |
| 126 | this.showLogPanel(); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | public async writeAndShowErrorWithActions( |
| 131 | message: string, |
nothing calls this directly
no test coverage detected