Skip to content

Commit

Permalink
KAFKA-9601: Stop logging raw connector config values (apache#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 qq619618919 committed May 12, 2020
1 parent a8b83ab commit e3ebf0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,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 e3ebf0a

Please sign in to comment.