(
message: string,
...additionalMessages: string[]
)
| 69 | } |
| 70 | |
| 71 | public async writeAndShowInformation( |
| 72 | message: string, |
| 73 | ...additionalMessages: string[] |
| 74 | ): Promise<void> { |
| 75 | this.write(message, ...additionalMessages); |
| 76 | |
| 77 | const selection = await window.showInformationMessage( |
| 78 | message, |
| 79 | "Show Logs", |
| 80 | "Okay", |
| 81 | ); |
| 82 | if (selection === "Show Logs") { |
| 83 | this.showLogPanel(); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | public writeTrace(message: string, ...additionalMessages: string[]): void { |
| 88 | this.writeAtLevel(LogLevel.Trace, message, ...additionalMessages); |
nothing calls this directly
no test coverage detected