]> git.mxchange.org Git - simgear.git/commitdiff
advance tracing messages from SG_INFO to SG_ALERT. If a developer has
authormfranz <mfranz>
Mon, 11 Jun 2007 16:09:50 +0000 (16:09 +0000)
committermfranz <mfranz>
Mon, 11 Jun 2007 16:09:50 +0000 (16:09 +0000)
demanded tracing, then he shouldn't get these important messages buried
in thousands of lines of meaningless bulk.

simgear/props/props.cxx

index 786abf3424884e1ef326b6a7aee3374a40b6ede8..c0f2119d78aaabb93ff388d3e98a9a3828310384 100644 (file)
@@ -598,7 +598,7 @@ SGPropertyNode::trace_write () const
   cerr << "TRACE: Write node " << getPath () << ", value\""
        << make_string() << '"' << endl;
 #else
-  SG_LOG(SG_GENERAL, SG_INFO, "TRACE: Write node " << getPath()
+  SG_LOG(SG_GENERAL, SG_ALERT, "TRACE: Write node " << getPath()
         << ", value\"" << make_string() << '"');
 #endif
 }
@@ -613,7 +613,7 @@ SGPropertyNode::trace_read () const
   cerr << "TRACE: Write node " << getPath () << ", value \""
        << make_string() << '"' << endl;
 #else
-  SG_LOG(SG_GENERAL, SG_INFO, "TRACE: Read node " << getPath()
+  SG_LOG(SG_GENERAL, SG_ALERT, "TRACE: Read node " << getPath()
         << ", value \"" << make_string() << '"');
 #endif
 }