diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-04-11 09:01:44 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-04-11 09:01:44 -0400 |
commit | 6a84d236f4e34a4b9192e6d1e68bca9bc6d8b8d7 (patch) | |
tree | c131b99ce0805b0c8573258a56127ea9e8653343 /indra | |
parent | e44bfcb5f5f489315159b9bd6bcfe0615c6a7265 (diff) |
SL-362 - changed 'could not link driven params for wearable' into a debug message. Needs more diagnosis to figure out whether we care. Silencing for now to avoid redundant bug reports.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/llappearance/llwearable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llappearance/llwearable.cpp b/indra/llappearance/llwearable.cpp index 5ca9f55ac8..63069adcc8 100755 --- a/indra/llappearance/llwearable.cpp +++ b/indra/llappearance/llwearable.cpp @@ -173,7 +173,7 @@ void LLWearable::createVisualParams(LLAvatarAppearance *avatarp) { if( !param->linkDrivenParams(boost::bind(param_function,avatarp,_1 ), true)) { - LL_WARNS() << "could not link driven params for wearable " << getName() << " id: " << param->getID() << LL_ENDL; + LL_DEBUGS("Avatar") << "could not link driven params for wearable " << getName() << " id: " << param->getID() << LL_ENDL; continue; } } |