summaryrefslogtreecommitdiffstats
path: root/pico
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2011-01-05 09:31:00 -0800
committerJean-Michel Trivi <jmtrivi@google.com>2011-01-05 09:33:09 -0800
commit8dda5a28837ae0851ea2d3cc64a69decf8c76668 (patch)
tree7bbde0b9e871740d343b082d47add7ddebe29136 /pico
parent410a1a0acbd50d7a73f0b2dbfc3e52c0808fc98d (diff)
downloadexternal_svox-8dda5a28837ae0851ea2d3cc64a69decf8c76668.zip
external_svox-8dda5a28837ae0851ea2d3cc64a69decf8c76668.tar.gz
external_svox-8dda5a28837ae0851ea2d3cc64a69decf8c76668.tar.bz2
Don't log an error when SSML has no language.
Change-Id: I3ce4ce7c121f3f72b242a0edf33b5f6f16e7fdac
Diffstat (limited to 'pico')
-rw-r--r--pico/tts/com_svox_picottsengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pico/tts/com_svox_picottsengine.cpp b/pico/tts/com_svox_picottsengine.cpp
index d614cb4..7ac4ec7 100644
--- a/pico/tts/com_svox_picottsengine.cpp
+++ b/pico/tts/com_svox_picottsengine.cpp
@@ -1515,7 +1515,7 @@ tts_result TtsEngine::synthesizeText( const char * text, int8_t * buffer, size_t
return TTS_FAILURE;
}
}
- LOGE("No language in SSML, using current language (%s).", picoProp_currLang);
+ //LOGI("No language in SSML, using current language (%s).", picoProp_currLang);
}
delete parser;
} else {