Skip to content

Commit

Permalink
KAFKA-9601: Stop logging raw connector config values (#8165)
Browse files Browse the repository at this point in the history
Author: Chris Egerton <[email protected]>
Reviewer: Randall Hauch <[email protected]>
  • Loading branch information
C0urante authored and rhauch committed Feb 26, 2020
1 parent 92f4e4e commit 12840f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public WorkerConnector(String connName,
public void initialize(ConnectorConfig connectorConfig) {
try {
this.config = connectorConfig.originalsStrings();
log.debug("{} Initializing connector {} with config {}", this, connName, config);
log.debug("{} Initializing connector {}", this, connName);
if (isSinkConnector()) {
SinkConnectorConfig.validate(config);
}
Expand Down

0 comments on commit 12840f8

Please sign in to comment.