diff -r b0bd26c5638a doc/contributions.txt --- a/doc/contributions.txt Wed Dec 15 19:37:43 2010 +0100 +++ b/doc/contributions.txt Mon Jan 17 14:29:29 2011 +0100 @@ -79,6 +79,7 @@ VWR-24252 VWR-24254 VWR-24261 + VWR-24317 SNOW-84 SNOW-477 SNOW-744 diff -r b0bd26c5638a indra/llui/llnotifications.cpp --- a/indra/llui/llnotifications.cpp Wed Dec 15 19:37:43 2010 +0100 +++ b/indra/llui/llnotifications.cpp Mon Jan 17 14:29:29 2011 +0100 @@ -1367,7 +1367,6 @@ typedef std::map StringMap; void replaceSubstitutionStrings(LLXMLNodePtr node, StringMap& replacements) { - //llwarns << "replaceSubstitutionStrings" << llendl; // walk the list of attributes looking for replacements for (LLXMLAttribList::iterator it=node->mAttributes.begin(); it != node->mAttributes.end(); ++it) @@ -1381,13 +1380,12 @@ if (found != replacements.end()) { replacement = found->second; - //llwarns << "replaceSubstituionStrings: value: " << value << " repl: " << replacement << llendl; - + lldebugs << "replaceSubstitutionStrings: value: \"" << value << "\" repl: \"" << replacement << "\"." << llendl; it->second->setValue(replacement); } else { - llwarns << "replaceSubstituionStrings FAILURE: value: " << value << " repl: " << replacement << llendl; + llwarns << "replaceSubstitutionStrings FAILURE: could not find replacement \"" << value << "\"." << llendl; } } }