Chirag Wadhwa created KAFKA-19499: ------------------------------------- Summary: Correct the logger name in PersisterStateManager Key: KAFKA-19499 URL: https://issues.apache.org/jira/browse/KAFKA-19499 Project: Kafka Issue Type: Sub-task Reporter: Chirag Wadhwa Assignee: Chirag Wadhwa
Currently, the logs in PersisterStateManager are logged using a logger defined in the inner class PersisterStateManagerHandler using LoggerFactory.getLogger(getClass()). This does not allow us to change the log level dynamically in kafka brokers. The solution for this is to use LoggerFactory.getLogger(getClass().getCanonicalName()) instead. -- This message was sent by Atlassian Jira (v8.20.10#820010)