From: ThorstenB Date: Fri, 23 Nov 2012 19:44:17 +0000 (+0100) Subject: Change logging class for tie/untie messages. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d2267098360176baaccf1a4aa1262f1fb5b71359;p=simgear.git Change logging class for tie/untie messages. It's enough to see them in "general". --- diff --git a/simgear/props/tiedpropertylist.hxx b/simgear/props/tiedpropertylist.hxx index dcefe222..647b8d56 100644 --- a/simgear/props/tiedpropertylist.hxx +++ b/simgear/props/tiedpropertylist.hxx @@ -51,7 +51,7 @@ public: template SGPropertyNode_ptr Tie( SGPropertyNode_ptr node, const SGRawValue &rawValue, bool useDefault = true ) { bool success = node->tie( rawValue, useDefault ); if( success ) { - SG_LOG( SG_ALL, SG_DEBUG, "Tied " << node->getPath() ); + SG_LOG( SG_GENERAL, SG_DEBUG, "Tied " << node->getPath() ); push_back( node ); } else { #if PROPS_STANDALONE @@ -125,7 +125,7 @@ public: void Untie() { while( size() > 0 ) { - SG_LOG( SG_ALL, SG_DEBUG, "untie of " << back()->getPath() ); + SG_LOG( SG_GENERAL, SG_DEBUG, "untie of " << back()->getPath() ); back()->untie(); pop_back(); }