dhruv-nudge
Results
2
comments of
dhruv-nudge
``` export default class MyKafka { private static instance: MyKafka; private constructor() { this.kafkaLogger.setLogLevel(KafkaJS.logLevel.WARN); } public static getInstance() { if (!this.instance) { this.instance = new MyKafka(); } return this.instance; }...
@milindl can you please check this?