Skip to content

Commit

Permalink
Stop showing the producer log output automatically
Browse files Browse the repository at this point in the history
Fixes jlandersen#134

Signed-off-by: Fred Bricon <[email protected]>
  • Loading branch information
fbricon committed Mar 17, 2021
1 parent 446695b commit 36c090e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/commands/producers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 36c090e

Please sign in to comment.