Skip to content

Commit

Permalink
Removed unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-amal committed Jul 12, 2024
1 parent 269b940 commit 1b4f8f5
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export class TextToSpeechFunctionProvider extends FunctionProvider {
switch (textToSpeechFunction) {
case TextToSpeechFunction.Play:
return (text: string) => {
console.log("Playing text: ", text);
FunctionProvider.remoteRobot?.playTextToSpeech(
text,
0, // 0 to queue, 1 to interrupt
Expand All @@ -24,7 +23,6 @@ export class TextToSpeechFunctionProvider extends FunctionProvider {
};
case TextToSpeechFunction.Stop:
return () => {
console.log("Stopping text");
FunctionProvider.remoteRobot?.stopTextToSpeech();
};
case TextToSpeechFunction.SaveText:
Expand Down

0 comments on commit 1b4f8f5

Please sign in to comment.