]> git.mxchange.org Git - simgear.git/commitdiff
Logging:less verbose sound loading.
authorjmt <jmt>
Mon, 14 Sep 2009 12:36:35 +0000 (12:36 +0000)
committerTim Moore <timoore@redhat.com>
Thu, 17 Sep 2009 10:13:47 +0000 (12:13 +0200)
simgear/sound/xmlsound.cxx

index 529b84c761ecb2aea975ab84f1dac18e61f8c0cb..8dd8df9323d197e0e5e6a6395af9339200e97646 100644 (file)
@@ -97,7 +97,7 @@ SGXmlSound::init(SGPropertyNode *root, SGPropertyNode *node, SGSoundMgr *sndmgr,
    }
    
    _name = node->getStringValue("name", "");
-   SG_LOG(SG_GENERAL, SG_INFO, "Loading sound information for: " << _name );
+   SG_LOG(SG_GENERAL, SG_DEBUG, "Loading sound information for: " << _name );
 
    const char *mode_str = node->getStringValue("mode", "");
    if ( !strcmp(mode_str, "looped") ) {
@@ -110,7 +110,7 @@ SGXmlSound::init(SGPropertyNode *root, SGPropertyNode *node, SGSoundMgr *sndmgr,
       _mode = SGXmlSound::ONCE;
 
       if ( strcmp(mode_str, "") )
-         SG_LOG(SG_GENERAL,SG_INFO, "  Unknown sound mode, default to 'once'");
+         SG_LOG(SG_GENERAL,SG_INFO, "Unknown sound mode for '" << _name << "', default to 'once'");
    }
 
    _property = root->getNode(node->getStringValue("property", ""), true);