From 816d84457c1bedd5fc352f33d667c25c291cd6a1 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sat, 24 Jan 2004 10:36:37 +0000 Subject: [PATCH] Reduce the log level to info --- src/Time/sunpos.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5