minor logging

This commit is contained in:
Dave Horton
2023-05-09 13:59:38 -04:00
parent 521560e276
commit 68cbd63bbd
-1
View File
@@ -444,7 +444,6 @@ const synthNvidia = async(client, logger, {credentials, stats, language, voice,
rivaClient.synthesize(request, (err, response) => {
if (err) {
logger.info({err, voice, language}, 'error synthesizing speech using Nvidia');
console.error({err}, 'error synthesizing speech using Nvidia');
return reject(err);
}
resolve(Buffer.from(response.getAudio()));