From 60d7f0f31c5d9487b1f2a0673821ac84240fab65 Mon Sep 17 00:00:00 2001 From: akirilyuk Date: Fri, 4 Feb 2022 08:29:16 +0100 Subject: [PATCH] add more logs --- lib/tasks/gather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/gather.js b/lib/tasks/gather.js index d044aed4..3fe2b297 100644 --- a/lib/tasks/gather.js +++ b/lib/tasks/gather.js @@ -25,7 +25,7 @@ class TaskGather extends Task { this.minBargeinWordCount = this.data.minBargeinWordCount || 1; // this is specially for barge in where we want to make a bargebale promt // to a user without listening after the say task has finished - this.logger({opts}, 'created gather task'); + this.logger.debug({opts}, 'created gather task'); this.listenAfterSpeech = this.data.listenAfterSpeech === false; this.timeout = (this.timeout || 15) * 1000; this.interim = this.partialResultCallback || this.bargein;