From d36e13e8eda5bd4008e2f1951817497992b1f98a Mon Sep 17 00:00:00 2001 From: James Turner Date: Sun, 30 Oct 2011 07:55:44 +0000 Subject: [PATCH] Make tiedpropertylist quieter. --- simgear/props/tiedpropertylist.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/props/tiedpropertylist.hxx b/simgear/props/tiedpropertylist.hxx index f33478ac..7fb354c4 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_INFO, "Tied " << node->getPath() ); + SG_LOG( SG_ALL, 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_INFO, "untie of " << back()->getPath() ); + SG_LOG( SG_ALL, SG_DEBUG, "untie of " << back()->getPath() ); back()->untie(); pop_back(); } -- 2.39.5