]> git.mxchange.org Git - simgear.git/commitdiff
Enable release builds using the --without-logging option to the configure
authorcurt <curt>
Sat, 7 Nov 1998 19:07:06 +0000 (19:07 +0000)
committerTim Moore <timoore@redhat.com>
Tue, 15 Sep 2009 16:31:31 +0000 (18:31 +0200)
script.  Also a couple log message cleanups, plus some C to C++ comment
conversion.

Astro/stars.cxx

index fa7957d3387d14bf6a5567a450bbb3e84458ab2a..ac20f6120f551032a9a34cdb47bbec8ddb968494 100644 (file)
@@ -104,8 +104,9 @@ int fgStarsInit( void ) {
     }
 
     timer.stop();
-    cerr << "Loaded " << starcount << " stars in "
-        << timer.elapsedSeconds() << " seconds" << endl;
+    FG_LOG( FG_ASTRO, FG_INFO, 
+           "Loaded " << starcount << " stars in "
+           << timer.elapsedSeconds() << " seconds" );
 
     min_magnitude[0] = 4.2;
     min_magnitude[1] = 3.6;
@@ -254,6 +255,11 @@ void fgStarsRender( void ) {
 
 
 // $Log$
+// Revision 1.22  1998/11/07 19:07:07  curt
+// Enable release builds using the --without-logging option to the configure
+// script.  Also a couple log message cleanups, plus some C to C++ comment
+// conversion.
+//
 // Revision 1.21  1998/11/06 21:17:42  curt
 // Converted to new logstream debugging facility.  This allows release
 // builds with no messages at all (and no performance impact) by using