(
message: string,
...additionalMessages: string[]
)
| 100 | } |
| 101 | |
| 102 | public async writeAndShowWarning( |
| 103 | message: string, |
| 104 | ...additionalMessages: string[] |
| 105 | ): Promise<void> { |
| 106 | this.writeWarning(message, ...additionalMessages); |
| 107 | |
| 108 | const selection = await window.showWarningMessage(message, "Show Logs"); |
| 109 | if (selection !== undefined) { |
| 110 | this.showLogPanel(); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | public writeError(message: string, ...additionalMessages: string[]): void { |
| 115 | this.writeAtLevel(LogLevel.Error, message, ...additionalMessages); |
nothing calls this directly
no test coverage detected