Skip to content

Commit

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

Signed-off-by: Fred Bricon <[email protected]>
  • Loading branch information
fbricon authored and angelozerr committed Mar 19, 2021
1 parent 91851f4 commit 86f7bf3
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 @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/commands/producers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 86f7bf3

Please sign in to comment.