]> git.mxchange.org Git - flightgear.git/commitdiff
More log class fixes
authorTorsten Dreyer <torsten@t3r.de>
Tue, 20 May 2014 21:06:02 +0000 (23:06 +0200)
committerTorsten Dreyer <torsten@t3r.de>
Tue, 20 May 2014 21:06:02 +0000 (23:06 +0200)
src/Sound/flitevoice.cxx
src/Sound/voice.cxx

index 1c357d445f84205eaf32815ac3afaa9b8a294eb3..ee8b19795bd4fea26d1b249f0bde21c3fa7dcb12 100644 (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 << "'");
 }
index e276873e280b505f9f70a1472927b12891f2ce91..8817efe812ce511c278df9f1f3641317a63dd1b7 100644 (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
   }