From: James Turner Date: Tue, 20 Nov 2012 17:08:56 +0000 (+0000) Subject: Quiet some log output. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=51a1c86f00d5e19547cf3eb368b6a28dfdb966f4;p=flightgear.git Quiet some log output. --- diff --git a/src/Instrumentation/gps.cxx b/src/Instrumentation/gps.cxx index de071be0a..84ef13e35 100644 --- a/src/Instrumentation/gps.cxx +++ b/src/Instrumentation/gps.cxx @@ -709,7 +709,7 @@ void GPS::routeActivated() void GPS::routeManagerSequenced() { if (_mode != "leg") { - SG_LOG(SG_INSTR, SG_INFO, "GPS ignoring route sequencing, not in LEG mode"); + SG_LOG(SG_INSTR, SG_DEBUG, "GPS ignoring route sequencing, not in LEG mode"); return; } diff --git a/src/Navaids/FlightPlan.cxx b/src/Navaids/FlightPlan.cxx index fd7f7fb1d..af82fa250 100644 --- a/src/Navaids/FlightPlan.cxx +++ b/src/Navaids/FlightPlan.cxx @@ -239,7 +239,6 @@ public: bool operator()(FlightPlan::Leg* leg) const { if (leg->waypoint()->flag(flag)) { - std::cout << "deleting" << leg << std::endl; delete leg; ++delCount; return true;