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; }