From 36c090ef0a580970eec05592565851eb3dfebc07 Mon Sep 17 00:00:00 2001 From: Fred Bricon Date: Wed, 17 Mar 2021 15:33:14 +0100 Subject: [PATCH] Stop showing the producer log output automatically Fixes #134 Signed-off-by: Fred Bricon --- CHANGELOG.md | 1 + src/commands/producers.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5df3ec..017ad2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ All notable changes to Kafka extension will be documented in this file. ### Changed - Improved the "New topic" wizard: the replication factor is now read from the broker configuration. Input will be skipped if value can't be higher than 1. See [#64](https://github.com/jlandersen/vscode-kafka/issues/64). +- The "Kafka Producer Log" output view is no longer shown automatically when producing messages. See [#134](https://github.com/jlandersen/vscode-kafka/issues/134). ## [0.11.0] - 2021-03-08 ### Added diff --git a/src/commands/producers.ts b/src/commands/producers.ts index 9ed7100..8d07760 100644 --- a/src/commands/producers.ts +++ b/src/commands/producers.ts @@ -67,7 +67,6 @@ export class ProduceRecordCommandHandler { const producer = await client.producer(); await producer.connect(); - channel.show(false); channel.appendLine(`Producing record(s)`); const startOperation = performance.now();