diff --git a/lib/tasks/say.js b/lib/tasks/say.js index 521ad502..702a3d2d 100644 --- a/lib/tasks/say.js +++ b/lib/tasks/say.js @@ -341,8 +341,10 @@ class TaskSay extends TtsTask { if (filepath[segment].startsWith('say:{')) { const arr = /^say:\{.*\}\s*(.*)$/.exec(filepath[segment]); if (arr) this.logger.debug(`Say:exec complete playing streaming tts request: ${arr[1].substring(0, 64)}..`); + } else { + // This log will print spech credentials in say command for tts stream mode + this.logger.debug(`Say:exec completed play file ${filepath[segment]}`); } - this.logger.debug(`Say:exec completed play file ${filepath[segment]}`); } segment++; }