1
0
Fork 0

Quiet some log messages

This commit is contained in:
James Turner 2020-04-10 19:12:10 +01:00
parent 440ca82bca
commit 4571769ee7
2 changed files with 1 additions and 5 deletions

View file

@ -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()

View file

@ -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);