From: James Turner Date: Mon, 4 Jan 2016 03:51:58 +0000 (-0600) Subject: Quite some debug output from the materials caches. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=edf15e9f554d06dfdb2e426b9bfac8850178dea7;p=simgear.git Quite some debug output from the materials caches. --- diff --git a/simgear/scene/material/matlib.cxx b/simgear/scene/material/matlib.cxx index 848568d0..99a1c4c4 100644 --- a/simgear/scene/material/matlib.cxx +++ b/simgear/scene/material/matlib.cxx @@ -201,7 +201,7 @@ SGMaterialCache *SGMaterialLib::generateMatCache(SGGeod center) // Destructor SGMaterialLib::~SGMaterialLib ( void ) { - SG_LOG( SG_GENERAL, SG_INFO, "SGMaterialLib::~SGMaterialLib() size=" << matlib.size()); + SG_LOG( SG_TERRAIN, SG_DEBUG, "SGMaterialLib::~SGMaterialLib() size=" << matlib.size()); } const SGMaterial *SGMaterialLib::findMaterial(const osg::Geode* geode) @@ -244,5 +244,5 @@ SGMaterial *SGMaterialCache::find(const string& material) const // Destructor SGMaterialCache::~SGMaterialCache ( void ) { - SG_LOG( SG_GENERAL, SG_INFO, "SGMaterialCache::~SGMaterialCache() size=" << cache.size()); + SG_LOG( SG_TERRAIN, SG_DEBUG, "SGMaterialCache::~SGMaterialCache() size=" << cache.size()); }