From 4571769ee72cd7cd833e846a059f68d2cc2d947d Mon Sep 17 00:00:00 2001 From: James Turner <zakalawe@mac.com> Date: Fri, 10 Apr 2020 19:12:10 +0100 Subject: [PATCH] Quiet some log messages --- src/Airports/groundnetwork.cxx | 4 ---- src/Main/globals.cxx | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Airports/groundnetwork.cxx b/src/Airports/groundnetwork.cxx index 564c17f77..d256f7834 100644 --- a/src/Airports/groundnetwork.cxx +++ b/src/Airports/groundnetwork.cxx @@ -170,10 +170,6 @@ FGGroundNetwork::~FGGroundNetwork() BOOST_FOREACH(FGTaxiSegment* seg, segments) { delete seg; } - - // owning references to ground-net nodes will also drop - - SG_LOG(SG_NAVAID, SG_INFO, "destroying ground net for " << parent->ident()); } void FGGroundNetwork::init() diff --git a/src/Main/globals.cxx b/src/Main/globals.cxx index 1432ade88..590481721 100644 --- a/src/Main/globals.cxx +++ b/src/Main/globals.cxx @@ -396,7 +396,7 @@ void FGGlobals::append_read_allowed_paths(const SGPath &path) { SGPath abspath(path.realpath()); if (!abspath.exists()) { - SG_LOG(SG_GENERAL, SG_WARN, "read-allowed path not found:" << abspath); + SG_LOG(SG_IO, SG_DEBUG, "read-allowed path not found:" << abspath); return; } extra_read_allowed_paths.push_back(abspath);