From: James Turner Date: Thu, 30 Dec 2010 09:38:21 +0000 (+0000) Subject: Reduce log-level of aircraft-dir related messages. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e97eb4db85c555962f096ef8cb33f7aed75e4830;p=flightgear.git Reduce log-level of aircraft-dir related messages. --- diff --git a/src/Main/globals.cxx b/src/Main/globals.cxx index c560f2765..2c1156c1a 100644 --- a/src/Main/globals.cxx +++ b/src/Main/globals.cxx @@ -83,7 +83,7 @@ public: } if (r.exists()) { - SG_LOG(SG_IO, SG_INFO, "found path:" << aResource << " via /sim/aircraft-dir: " << r.str()); + SG_LOG(SG_IO, SG_DEBUG, "found path:" << aResource << " via /sim/aircraft-dir: " << r.str()); return r; } } @@ -95,7 +95,7 @@ public: for (; it != dirs.end(); ++it) { SGPath p(*it, res); if (p.exists()) { - SG_LOG(SG_IO, SG_INFO, "found path:" << aResource << " in aircraft dir: " << *it); + SG_LOG(SG_IO, SG_DEBUG, "found path:" << aResource << " in aircraft dir: " << *it); return p; } } // of aircraft path iteration