From 86556dda4747d7e964e6c7132fb3bea1b422566c Mon Sep 17 00:00:00 2001 From: AndyZ <87735571+Andyz26@users.noreply.github.com> Date: Fri, 4 Mar 2022 12:15:19 -0800 Subject: [PATCH] Make defaultStream Mapping check log debug level (#141) This log will currently make all default stream users have a repeated warning log from the default stream mapping process. Moving to debug for now. --- .../java/io/mantisrx/publish/AbstractSubscriptionTracker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mantis-publish/mantis-publish-core/src/main/java/io/mantisrx/publish/AbstractSubscriptionTracker.java b/mantis-publish/mantis-publish-core/src/main/java/io/mantisrx/publish/AbstractSubscriptionTracker.java index 05ca5ff34..f57a2312b 100644 --- a/mantis-publish/mantis-publish-core/src/main/java/io/mantisrx/publish/AbstractSubscriptionTracker.java +++ b/mantis-publish/mantis-publish-core/src/main/java/io/mantisrx/publish/AbstractSubscriptionTracker.java @@ -149,7 +149,7 @@ private Set getRelevantJobClusters(Map streamJobClusterM || StreamJobClusterMap.DEFAULT_STREAM_KEY.equals(streamName)) { jobClustersToFetch.add(e.getValue()); } else { - LOG.warn("No server side mappings found for one or more streams {} ", registeredStreams); + LOG.debug("No server side mappings found for one or more streams {} ", registeredStreams); LOG.debug("will not fetch subscriptions for un-registered stream {}", streamName); } }