diff options
Diffstat (limited to 'backends/text-to-speech/linux')
-rw-r--r-- | backends/text-to-speech/linux/linux-text-to-speech.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/text-to-speech/linux/linux-text-to-speech.cpp b/backends/text-to-speech/linux/linux-text-to-speech.cpp index 49aefdb8b4..770a56c1d6 100644 --- a/backends/text-to-speech/linux/linux-text-to-speech.cpp +++ b/backends/text-to-speech/linux/linux-text-to-speech.cpp @@ -101,6 +101,7 @@ bool LinuxTextToSpeechManager::say(Common::String str) { return true; if (isSpeaking()) stop(); + debug("say: %s", str.c_str()); return spd_say(_connection, SPD_MESSAGE, str.c_str()) == -1; } |