Skip to content

Commit

Permalink
Raise log level to warn there's no topology found
Browse files Browse the repository at this point in the history
  • Loading branch information
vietk committed Apr 14, 2021
1 parent 3f65f29 commit df6f7dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public KafkaStreamsProducer(KafkaStreamsSupport kafkaStreamsSupport, KafkaStream
shutdown = false;
// No producer for Topology -> nothing to do
if (topology.isUnsatisfied()) {
LOGGER.debug("No Topology producer; Kafka Streams will not be started");
LOGGER.warn("No Topology producer; Kafka Streams will not be started");
this.executorService = null;
this.kafkaStreams = null;
this.kafkaStreamsTopologyManager = null;
Expand Down

0 comments on commit df6f7dc

Please sign in to comment.