We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 230bacf commit 8b27cd7Copy full SHA for 8b27cd7
arduino-ide-extension/src/browser/tool-output/client-service-impl.ts
@@ -15,6 +15,7 @@ export class ToolOutputServiceClientImpl implements ToolOutputServiceClient {
15
onNewOutput(tool: string, chunk: string): void {
16
this.outputContribution.openView().then(() => {
17
const channel = this.outputChannelManager.getChannel(`Arduino: ${tool}`);
18
+ channel.show();
19
channel.append(chunk);
20
});
21
}
0 commit comments