1
0
Fork 0

More log class fixes

This commit is contained in:
Torsten Dreyer 2014-05-20 23:06:02 +02:00
parent 29990c40bf
commit c187dab625
2 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ FGFLITEVoice::FGFLITEVoice(FGVoiceMgr * mgr, const SGPropertyNode_ptr node, cons
node->getNode("text", true)->addChangeListener(this);
SG_LOG(SG_ALL, SG_INFO, "FLITEVoice initialized for sample-group '" << sampleGroupRefName
SG_LOG(SG_SOUND, SG_INFO, "FLITEVoice initialized for sample-group '" << sampleGroupRefName
<< "'. Samples will be named '" << _sampleName << "' "
<< "voice is '" << voice << "'");
}

View file

@ -100,10 +100,10 @@ void FGVoiceMgr::init()
}
}
#if defined(ENABLE_FLITE)
SG_LOG(SG_ALL,SG_INFO,"creating flite voice" );
SG_LOG(SG_SOUND,SG_INFO,"creating flite voice" );
_voices.push_back(new FGFLITEVoice(this, voice));
#else
SG_LOG(SG_ALL,SG_ALERT,"non festival voice not supported." );
SG_LOG(SG_SOUND,SG_ALERT,"non festival voice not supported." );
#endif
}