From 3a3544a5e8c95412db2134e2a81e596a57b080d7 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Thu, 23 Feb 2023 12:32:41 -0500 Subject: [PATCH] remove some wordy logging --- lib/utils/transcription-utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; };