Make tiedpropertylist quieter.
This commit is contained in:
parent
2e9896a9ab
commit
d36e13e8ed
@ -51,7 +51,7 @@ public:
|
|||||||
template<typename T> SGPropertyNode_ptr Tie( SGPropertyNode_ptr node, const SGRawValue<T> &rawValue, bool useDefault = true ) {
|
template<typename T> SGPropertyNode_ptr Tie( SGPropertyNode_ptr node, const SGRawValue<T> &rawValue, bool useDefault = true ) {
|
||||||
bool success = node->tie( rawValue, useDefault );
|
bool success = node->tie( rawValue, useDefault );
|
||||||
if( success ) {
|
if( success ) {
|
||||||
SG_LOG( SG_ALL, SG_INFO, "Tied " << node->getPath() );
|
SG_LOG( SG_ALL, SG_DEBUG, "Tied " << node->getPath() );
|
||||||
push_back( node );
|
push_back( node );
|
||||||
} else {
|
} else {
|
||||||
#if PROPS_STANDALONE
|
#if PROPS_STANDALONE
|
||||||
@ -125,7 +125,7 @@ public:
|
|||||||
|
|
||||||
void Untie() {
|
void Untie() {
|
||||||
while( size() > 0 ) {
|
while( size() > 0 ) {
|
||||||
SG_LOG( SG_ALL, SG_INFO, "untie of " << back()->getPath() );
|
SG_LOG( SG_ALL, SG_DEBUG, "untie of " << back()->getPath() );
|
||||||
back()->untie();
|
back()->untie();
|
||||||
pop_back();
|
pop_back();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user