]> git.mxchange.org Git - flightgear.git/commitdiff
Reduce the log level to info
authorehofman <ehofman>
Sat, 24 Jan 2004 10:36:37 +0000 (10:36 +0000)
committerehofman <ehofman>
Sat, 24 Jan 2004 10:36:37 +0000 (10:36 +0000)
src/Time/sunpos.cxx

index 3a190d10330d5713b48b0856ee06d00f653128ba..cf35a852e1493c21a98f39d9ee208589be4ebce1 100644 (file)
@@ -342,12 +342,12 @@ void fgUpdateSunPos( void ) {
     // cout << "  Dot product = " << dot << endl;
 
     if (dot > 1.0) {
-        SG_LOG( SG_ASTRO, SG_WARN,
+        SG_LOG( SG_ASTRO, SG_INFO,
                 "Dot product  = " << dot << " is greater than 1.0" );
         dot = 1.0;
     }
     else if (dot < -1.0) {
-         SG_LOG( SG_ASTRO, SG_WARN,
+         SG_LOG( SG_ASTRO, SG_INFO,
                  "Dot product  = " << dot << " is less than -1.0" );
          dot = -1.0;
      }