From 51a1c86f00d5e19547cf3eb368b6a28dfdb966f4 Mon Sep 17 00:00:00 2001 From: James Turner Date: Tue, 20 Nov 2012 17:08:56 +0000 Subject: [PATCH] Quiet some log output. --- src/Instrumentation/gps.cxx | 2 +- src/Navaids/FlightPlan.cxx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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;