Skip to content

Commit

Permalink
Make defaultStream Mapping check log debug level (#141)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Andyz26 authored Mar 4, 2022
1 parent 423cd98 commit 86556dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private Set<String> getRelevantJobClusters(Map<String, String> 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);
}
}
Expand Down

0 comments on commit 86556dd

Please sign in to comment.