Skip to content

Commit

Permalink
Merge pull request #16515 from vietk/feature/switch-log-level-when-no…
Browse files Browse the repository at this point in the history
…-topology

Raise log level to warn there's no topology found
  • Loading branch information
gastaldi authored Apr 14, 2021
2 parents 8ae7218 + df6f7dc commit 8f0dcc8
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 8f0dcc8

Please sign in to comment.