]> git.mxchange.org Git - flightgear.git/commitdiff
Change debug level: try --log-level=debug and you see why (takes very, very, *very...
authorehofman <ehofman>
Sat, 15 Jan 2005 14:25:58 +0000 (14:25 +0000)
committerehofman <ehofman>
Sat, 15 Jan 2005 14:25:58 +0000 (14:25 +0000)
src/Airports/apt_loader.cxx
src/Airports/simple.cxx

index d978649a6c8681f6e32ede65838fc90a2c46a1ee..a749bcda9be5a2521255db4437e54eac136ce68f 100644 (file)
@@ -75,11 +75,11 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
     while ( ! in.eof() ) {
        in.getline(tmp, 2048);
        line = tmp;
-       SG_LOG( SG_GENERAL, SG_DEBUG, "-> '" << line << "'" );
+       SG_LOG( SG_GENERAL, SG_BULK, "-> '" << line << "'" );
         if ( line.length() ) {
             token = simgear::strutils::split( line );
             if ( token.size() ) {
-                SG_LOG( SG_GENERAL, SG_DEBUG, "token[0] " << token[0] );
+                SG_LOG( SG_GENERAL, SG_BULK, "token[0] " << token[0] );
             }
         } else {
             token.clear();
@@ -105,7 +105,7 @@ bool fgAirportDBLoad( FGAirportList *airports, FGRunwayList *runways,
 
             string id = token[4];
             double elev = atof( token[1].c_str() );
-            SG_LOG( SG_GENERAL, SG_DEBUG, "Next airport = " << id << " "
+            SG_LOG( SG_GENERAL, SG_BULK, "Next airport = " << id << " "
                     << elev );
 
             if ( !last_apt_id.empty()) {
index a07fec7772bf4ddd1f4e6a25384841c68d58a965..5a3e509dc10549bc218650f874430fee235868e9 100644 (file)
@@ -54,7 +54,7 @@ void FGAirportList::add( const string id, const double longitude,
     a._has_metar = has_metar;
     airports_by_id[a._id] = a;
     airports_array.push_back( &airports_by_id[a._id] );
-    SG_LOG( SG_GENERAL, SG_DEBUG, "Adding " << id << " pos = " << longitude
+    SG_LOG( SG_GENERAL, SG_BULK, "Adding " << id << " pos = " << longitude
             << ", " << latitude << " elev = " << elevation );
 }