Skip to content

Commit

Permalink
Change SpringwolfKafkaController publish log level to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
stavshamir committed Oct 23, 2022
1 parent d51c271 commit 29c754f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void publish(@RequestParam String topic, @RequestBody KafkaMessageDto kaf
throw new ResponseStatusException(HttpStatus.NOT_FOUND, "Kafka producer is not enabled");
}

log.info("Publishing to kafka topic {}: {}", topic, kafkaMessage);
log.debug("Publishing to kafka topic {}: {}", topic, kafkaMessage);
kafkaProducer.send(topic, kafkaMessage.getHeaders(), kafkaMessage.getPayload());
}

Expand Down

0 comments on commit 29c754f

Please sign in to comment.