Couchbase Logs not printed when eventbus is enabled in cluster configuration

Hi Team,

Couchbase SDK Logs not getting printed in log when eventbus is enabled in cluster configuration

	ClusterEnvironment env = ClusterEnvironment.builder()
					.thresholdRequestTracerConfig(
							ThresholdRequestTracerConfig.builder().kvThreshold(Duration.ofSeconds(kvThresholdDuration))
									.queryThreshold(Duration.ofSeconds(queryThresholdDuration)))

					.eventBus(DefaultEventBus.builder(Schedulers.parallel()).queueCapacity(queueCapacity).build())
					.timeoutConfig(TimeoutConfig.kvTimeout(Duration.ofSeconds(kvTimeOutDuration)))
					.build();
				
**Logs are getting printed with the below configuration.**

	ClusterEnvironment env = ClusterEnvironment.builder()
					.thresholdRequestTracerConfig(
							ThresholdRequestTracerConfig.builder().kvThreshold(Duration.ofSeconds(kvThresholdDuration))
									.queryThreshold(Duration.ofSeconds(queryThresholdDuration)))

					//.eventBus(DefaultEventBus.builder(Schedulers.parallel()).queueCapacity(queueCapacity).build())
					.timeoutConfig(TimeoutConfig.kvTimeout(Duration.ofSeconds(kvTimeOutDuration)))
					.build();
				
**Is it not possible to print the logs if  event bus configuration is enabled?**

@Manzoor128 so just to clarify, you are passing in a custom event bus and you are saying the logging doesn’t work anymore? Which SDK version are you using?

Also, why are you trying to customize the event bus? that’s not something you need usually.