Extend logging for else case as well
parent
a60b643047
commit
5a861afa3c
|
|
@ -152,7 +152,9 @@ void LLUICtrlFactory::createChildren(LLView* viewp, LLXMLNodePtr node, const wid
|
|||
//LL_WARNS() << "Could not create widget named " << child_node->getName()->mString << LL_ENDL;
|
||||
std::string name;
|
||||
node->getAttributeString("name", name);
|
||||
LL_WARNS() << "Could not create widget named " << child_node->getName()->mString << " for " << name << " (line no. " << node->getLineNumber() << ")" << LL_ENDL;
|
||||
std::string child_name_attribute;
|
||||
child_node->getAttributeString("name", child_name_attribute);
|
||||
LL_WARNS() << "Could not create widget " << child_node->getName()->mString << " with name " << child_name_attribute << " for " << name << " (line no. " << node->getLineNumber() << ")" << LL_ENDL;
|
||||
// </FS:Ansariel>
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue