]> git.mxchange.org Git - flightgear.git/commitdiff
noise reduction (flooding the terminal isn't exactly informative)
authormfranz <mfranz>
Sat, 18 Feb 2006 00:18:20 +0000 (00:18 +0000)
committermfranz <mfranz>
Sat, 18 Feb 2006 00:18:20 +0000 (00:18 +0000)
src/Airports/simple.cxx

index dcad2b554c52cb64e52ee890107437c8a6e17163..c3ac0328ca7db55f607f854157396174c645341a 100644 (file)
@@ -277,7 +277,7 @@ void FGAirportList::has_metar( const string &id ) {
 const FGAirport *fgFindAirportID( const string& id) {
     const FGAirport* result = NULL;
     if ( id.length() ) {
-        SG_LOG( SG_GENERAL, SG_INFO, "Searching for airport code = " << id );
+        SG_LOG( SG_GENERAL, SG_BULK, "Searching for airport code = " << id );
 
         result = globals->get_airports()->search( id );
 
@@ -289,7 +289,7 @@ const FGAirport *fgFindAirportID( const string& id) {
     } else {
         return NULL;
     }
-    SG_LOG( SG_GENERAL, SG_INFO,
+    SG_LOG( SG_GENERAL, SG_BULK,
             "Position for " << id << " is ("
             << result->getLongitude() << ", "
             << result->getLatitude() << ")" );
@@ -303,7 +303,7 @@ double fgGetAirportElev( const string& id ) {
     
     // double lon, lat;
 
-    SG_LOG( SG_GENERAL, SG_INFO,
+    SG_LOG( SG_GENERAL, SG_BULK,
             "Finding elevation for airport: " << id );
 
     const FGAirport *a=fgFindAirportID( id);
@@ -318,7 +318,7 @@ double fgGetAirportElev( const string& id ) {
 Point3D fgGetAirportPos( const string& id ) {
     // double lon, lat;
 
-    SG_LOG( SG_ATC, SG_INFO,
+    SG_LOG( SG_ATC, SG_BULK,
             "Finding position for airport: " << id );
 
     const FGAirport *a = fgFindAirportID( id);