From: ehofman Date: Sat, 24 Jan 2004 10:36:37 +0000 (+0000) Subject: Reduce the log level to info X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=816d84457c1bedd5fc352f33d667c25c291cd6a1;p=flightgear.git Reduce the log level to info --- diff --git a/src/Time/sunpos.cxx b/src/Time/sunpos.cxx index 3a190d103..cf35a852e 100644 --- a/src/Time/sunpos.cxx +++ b/src/Time/sunpos.cxx @@ -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; }