Skip to content

Commit

Permalink
[strimzi#434] feat: added create topic endpoint - logger edit
Browse files Browse the repository at this point in the history
Signed-off-by: ilkerkocatepe <[email protected]>
  • Loading branch information
ilkerkocatepe committed Nov 19, 2024
1 parent 4446e47 commit 36c2fa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public void doCreateTopic(RoutingContext routingContext) {

this.kafkaBridgeAdmin.createTopic(topicName)
.whenComplete(((topic, exception) -> {
log.trace("Create topic handler thread {}", Thread.currentThread());
LOGGER.trace("Create topic handler thread {}", Thread.currentThread());
if (exception == null) {
ArrayNode root = JsonUtils.createArrayNode();
HttpUtils.sendResponse(routingContext, HttpResponseStatus.OK.code(),
Expand Down

0 comments on commit 36c2fa0

Please sign in to comment.