mimaison commented on code in PR #17636:
URL: https://github.com/apache/kafka/pull/17636#discussion_r1822933178
##########
core/src/main/scala/kafka/server/DelayedCreatePartitions.scala:
##########
@@ -49,7 +51,7 @@ class DelayedCreatePartitions(delayMs: Long,
createMetadata: Seq[CreatePartitionsMetadata],
adminManager: ZkAdminManager,
responseCallback: Map[String, ApiError] => Unit)
- extends DelayedOperation(delayMs) {
+ extends DelayedOperation(delayMs) with Logging {
Review Comment:
The `Logging` trait used to be on `DelayedOperation` class. Since I rewrote
`DelayedOperation` in Java, I added the `Logging` trait to all these classes.
I expect we'll move these soon, then we'll use `Logger` for them too.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]