diff --git a/lib/utils/transcription-utils.js b/lib/utils/transcription-utils.js index ba5a2b6e..ca2e5c72 100644 --- a/lib/utils/transcription-utils.js +++ b/lib/utils/transcription-utils.js @@ -221,7 +221,7 @@ const normalizeAws = (evt, channel, language) => { module.exports = (logger) => { const normalizeTranscription = (evt, vendor, channel, language) => { - logger.debug({ evt, vendor, channel, language }, 'normalizeTranscription'); + //logger.debug({ evt, vendor, channel, language }, 'normalizeTranscription'); switch (vendor) { case 'deepgram': return normalizeDeepgram(evt, channel, language); @@ -498,7 +498,7 @@ module.exports = (logger) => { stickyVars[rOpts.vendor].forEach((key) => { if (!opts[key]) opts[key] = ''; }); - logger.debug({opts}, 'recognizer channel vars'); + //logger.debug({opts}, 'recognizer channel vars'); return opts; };