Jeff Kim created KAFKA-16306:
--------------------------------
Summary: GroupCoordinatorService logger is not configured
Key: KAFKA-16306
URL: https://issues.apache.org/jira/browse/KAFKA-16306
Project: Kafka
Issue Type: Sub-task
Reporter: Jeff Kim
The GroupCoordinatorService constructor initializes with the wrong logger class:
```
GroupCoordinatorService(
LogContext logContext,
GroupCoordinatorConfig config,
CoordinatorRuntime<GroupCoordinatorShard, Record> runtime,
GroupCoordinatorMetrics groupCoordinatorMetrics
) {
this.log = logContext.logger(CoordinatorLoader.class);
this.config = config;
this.runtime = runtime;
this.groupCoordinatorMetrics = groupCoordinatorMetrics;
}
```
change this to GroupCoordinatorService.class
--
This message was sent by Atlassian Jira
(v8.20.10#820010)