From bb876d7c0aa2ac0dac4d3a6f1e319caa437906cf Mon Sep 17 00:00:00 2001 From: Jesse Date: Tue, 8 Mar 2022 19:58:36 -0500 Subject: [PATCH] remove console statements --- www/js/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/www/js/index.js b/www/js/index.js index 7e4b4d6..3c343a4 100644 --- a/www/js/index.js +++ b/www/js/index.js @@ -109,7 +109,6 @@ class SpeechSynthesis { this.speaking = true; // TTS doesn't offer a 'start' event so we do our best by calling start callbacks eagerly. - console.log( 'start event', utterance.text ); utterance.fireStart(); TTS.speak( { @@ -127,7 +126,6 @@ class SpeechSynthesis { } ).then( () => { // fire the end event on the Utterance - console.log( 'about to fire end for ', utterance.text ); utterance.fireEnd(); // speech success, we are no longer speaking