diff --git a/CHANGELOG.md b/CHANGELOG.md index b54d716..db1f939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,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 58c2497..8062743 100644 --- a/src/commands/producers.ts +++ b/src/commands/producers.ts @@ -70,7 +70,6 @@ export class ProduceRecordCommandHandler { const producer = await client.producer(); await producer.connect(); - channel.show(false); channel.appendLine(`Producing record(s)`); const startOperation = performance.now();