1
0
Fork 0

ever heard of SG_LOG?

This commit is contained in:
mfranz 2006-03-26 08:11:40 +00:00
parent 798e3c505c
commit b906a06be7
2 changed files with 8 additions and 8 deletions

View file

@ -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)

View file

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