From b906a06be77035baa42242f29d1c0253e3c19f21 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sun, 26 Mar 2006 08:11:40 +0000 Subject: [PATCH] ever heard of SG_LOG? --- src/Airports/dynamics.cxx | 8 ++++---- src/Airports/runwayprefs.cxx | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Airports/dynamics.cxx b/src/Airports/dynamics.cxx index 57cce5526..def5007ae 100644 --- a/src/Airports/dynamics.cxx +++ b/src/Airports/dynamics.cxx @@ -437,13 +437,13 @@ void FGAirportDynamics::pi (const char * target, const char * data) { } void FGAirportDynamics::warning (const char * message, int line, int column) { - cout << "Warning: " << message << " (" << line << ',' << column << ')' - << endl; + //cout << "Warning: " << message << " (" << line << ',' << column << ')' + // << endl; } void FGAirportDynamics::error (const char * message, int line, int column) { - cout << "Error: " << message << " (" << line << ',' << column << ')' - << endl; + //cout << "Error: " << message << " (" << line << ',' << column << ')' + // << endl; } void FGAirportDynamics::setRwyUse(const FGRunwayPreference& ref) diff --git a/src/Airports/runwayprefs.cxx b/src/Airports/runwayprefs.cxx index e829c8dd0..5a5a146b2 100644 --- a/src/Airports/runwayprefs.cxx +++ b/src/Airports/runwayprefs.cxx @@ -566,11 +566,11 @@ void FGRunwayPreference::pi (const char * target, const char * data) { } void FGRunwayPreference::warning (const char * message, int line, int column) { - cout << "Warning: " << message << " (" << line << ',' << column << ')' - << endl; + //cout << "Warning: " << message << " (" << line << ',' << column << ')' + // << endl; } void FGRunwayPreference::error (const char * message, int line, int column) { - cout << "Error: " << message << " (" << line << ',' << column << ')' - << endl; + //cout << "Error: " << message << " (" << line << ',' << column << ')' + // << endl; }