diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-08-15 15:00:41 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-08-15 15:00:41 -0700 |
commit | e617a059f190271f8e2602b3b3287b0def9bfd2f (patch) | |
tree | 3268db92a2ebf6279e2555f12ad6feaa7afe0624 /indra/newview | |
parent | 72ffcd147a85cb727d194a4c57360a1a69890cb1 (diff) | |
parent | 9babd8107643daf5cdad3aab8851a6e56bcdad6f (diff) |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience-merge
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfeaturemanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index 0ea0e41dfa..db9a0424c0 100644 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -106,7 +106,7 @@ BOOL LLFeatureList::isFeatureAvailable(const std::string& name) 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 // something for it to be disabled @@ -120,7 +120,7 @@ F32 LLFeatureList::getRecommendedValue(const std::string& name) 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; } |