Change logging class for tie/untie messages.

It's enough to see them in "general".
This commit is contained in:
ThorstenB 2012-11-23 20:44:17 +01:00
parent fbfd03fe5c
commit d226709836

View File

@ -51,7 +51,7 @@ public:
template<typename T> SGPropertyNode_ptr Tie( SGPropertyNode_ptr node, const SGRawValue<T> &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();
}