From c187dab6253477006899c6817af615c3c51f0c50 Mon Sep 17 00:00:00 2001
From: Torsten Dreyer <torsten@t3r.de>
Date: Tue, 20 May 2014 23:06:02 +0200
Subject: [PATCH] More log class fixes

---
 src/Sound/flitevoice.cxx | 2 +-
 src/Sound/voice.cxx      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Sound/flitevoice.cxx b/src/Sound/flitevoice.cxx
index 1c357d445..ee8b19795 100644
--- a/src/Sound/flitevoice.cxx
+++ b/src/Sound/flitevoice.cxx
@@ -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 << "'");
 }
diff --git a/src/Sound/voice.cxx b/src/Sound/voice.cxx
index e276873e2..8817efe81 100644
--- a/src/Sound/voice.cxx
+++ b/src/Sound/voice.cxx
@@ -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
   }