Voice synth: reduce some log output levels
This commit is contained in:
parent
904e55d657
commit
a3d75e8573
2 changed files with 2 additions and 3 deletions
|
@ -53,7 +53,7 @@ void FLITEVoiceSynthesizer::WorkerThread::run()
|
||||||
|
|
||||||
// marker value indicating termination requested
|
// marker value indicating termination requested
|
||||||
if ((request.speed < 0.0) && (request.volume < 0.0)) {
|
if ((request.speed < 0.0) && (request.volume < 0.0)) {
|
||||||
SG_LOG(SG_SOUND, SG_INFO, "FLITE synthesis thread exiting");
|
SG_LOG(SG_SOUND, SG_DEBUG, "FLITE synthesis thread exiting");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,7 +106,6 @@ FLITEVoiceSynthesizer::~FLITEVoiceSynthesizer()
|
||||||
// push the special marker value
|
// push the special marker value
|
||||||
_requests.push(SynthesizeRequest::cancelThreadRequest());
|
_requests.push(SynthesizeRequest::cancelThreadRequest());
|
||||||
_worker->join();
|
_worker->join();
|
||||||
SG_LOG(SG_SOUND, SG_INFO, "FLITE synthesis thread joined OK");
|
|
||||||
Flite_HTS_Engine_clear(_engine);
|
Flite_HTS_Engine_clear(_engine);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ FGFLITEVoice::FGFLITEVoice(FGVoiceMgr * mgr, const SGPropertyNode_ptr node, cons
|
||||||
|
|
||||||
node->getNode("text", true)->addChangeListener(this);
|
node->getNode("text", true)->addChangeListener(this);
|
||||||
|
|
||||||
SG_LOG(SG_SOUND, SG_INFO, "FLITEVoice initialized for sample-group '" << sampleGroupRefName
|
SG_LOG(SG_SOUND, SG_DEBUG, "FLITEVoice initialized for sample-group '" << sampleGroupRefName
|
||||||
<< "'. Samples will be named '" << _sampleName << "' "
|
<< "'. Samples will be named '" << _sampleName << "' "
|
||||||
<< "voice is '" << voice << "'");
|
<< "voice is '" << voice << "'");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue