Skip to content
Snippets Groups Projects
Commit 25f1653c authored by Richard Linden's avatar Richard Linden
Browse files

EXP-1080 FIX Console gets spammed with VertexShaderEnable messages making the viewer unusable

converted LL_WARNS to LL_WARNS_ONCE
parent b215c724
No related branches found
No related tags found
No related merge requests found
...@@ -106,7 +106,7 @@ BOOL LLFeatureList::isFeatureAvailable(const std::string& name) ...@@ -106,7 +106,7 @@ BOOL LLFeatureList::isFeatureAvailable(const std::string& name)
return mFeatures[name].mAvailable; return mFeatures[name].mAvailable;
} }
LL_WARNS("RenderInit") << "Feature " << name << " not on feature list!" << LL_ENDL; LL_WARNS_ONCE("RenderInit") << "Feature " << name << " not on feature list!" << LL_ENDL;
// changing this to TRUE so you have to explicitly disable // changing this to TRUE so you have to explicitly disable
// something for it to be disabled // something for it to be disabled
...@@ -120,7 +120,7 @@ F32 LLFeatureList::getRecommendedValue(const std::string& name) ...@@ -120,7 +120,7 @@ F32 LLFeatureList::getRecommendedValue(const std::string& name)
return mFeatures[name].mRecommendedLevel; return mFeatures[name].mRecommendedLevel;
} }
LL_WARNS("RenderInit") << "Feature " << name << " not on feature list or not available!" << LL_ENDL; LL_WARNS_ONCE("RenderInit") << "Feature " << name << " not on feature list or not available!" << LL_ENDL;
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment