From e97eb4db85c555962f096ef8cb33f7aed75e4830 Mon Sep 17 00:00:00 2001 From: James Turner Date: Thu, 30 Dec 2010 09:38:21 +0000 Subject: [PATCH] Reduce log-level of aircraft-dir related messages. --- src/Main/globals.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5