aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorArmin Weatherwax2010-07-31 13:12:44 +0200
committerJacek Antonelli2010-08-02 00:11:25 -0500
commit390c8ccc0e63dd51fb351f1f6d4e67060c303192 (patch)
treea18761be2fa661f63820cc1e2640e31cdcf6be5e /linden/indra
parentremove llrender/llglimmediate.cpp and llglimmediate.h (empty files). (diff)
downloadmeta-impy-390c8ccc0e63dd51fb351f1f6d4e67060c303192.zip
meta-impy-390c8ccc0e63dd51fb351f1f6d4e67060c303192.tar.gz
meta-impy-390c8ccc0e63dd51fb351f1f6d4e67060c303192.tar.bz2
meta-impy-390c8ccc0e63dd51fb351f1f6d4e67060c303192.tar.xz
replace llwarns by LL_DEBUGS("View") in llview.h - pointless spam for enduser
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/llui/llview.h8
-rw-r--r--linden/indra/newview/app_settings/logcontrol.xml2
2 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llui/llview.h b/linden/indra/llui/llview.h
index 539adea..7e09dfa 100644
--- a/linden/indra/llui/llview.h
+++ b/linden/indra/llui/llview.h
@@ -488,7 +488,7 @@ public:
488 // did we find *something* with that name? 488 // did we find *something* with that name?
489 if (child) 489 if (child)
490 { 490 {
491 llwarns << "Found child named " << name << " but of wrong type " << typeid(child).name() << ", expecting " << typeid(T).name() << llendl; 491 LL_DEBUGS("View") << "Found child named " << name << " but of wrong type " << typeid(child).name() << ", expecting " << typeid(T).name() << LL_ENDL;
492 } 492 }
493 if (create_if_missing) 493 if (create_if_missing)
494 { 494 {
@@ -515,7 +515,7 @@ public:
515 std::string xml_tag = LLWidgetClassRegistry::getInstance()->getTag<T>(); 515 std::string xml_tag = LLWidgetClassRegistry::getInstance()->getTag<T>();
516 if (xml_tag.empty()) 516 if (xml_tag.empty())
517 { 517 {
518 llwarns << "No xml tag registered for this class " << llendl; 518 LL_DEBUGS("View") << "No xml tag registered for this class " << LL_ENDL;
519 return NULL; 519 return NULL;
520 } 520 }
521 // create dummy xml node (<button name="foo"/>) 521 // create dummy xml node (<button name="foo"/>)
@@ -526,13 +526,13 @@ public:
526 if (widget) 526 if (widget)
527 { 527 {
528 // need non-const to update private dummy widget cache 528 // need non-const to update private dummy widget cache
529 llwarns << "Making dummy " << xml_tag << " named " << name << " in " << getName() << llendl; 529 LL_DEBUGS("View") << "Making dummy " << xml_tag << " named " << name << " in " << getName() << LL_ENDL;
530 mDummyWidgets.insert(std::make_pair(name, widget)); 530 mDummyWidgets.insert(std::make_pair(name, widget));
531 } 531 }
532 else 532 else
533 { 533 {
534 // dynamic cast will fail if T::fromXML only registered for base class 534 // dynamic cast will fail if T::fromXML only registered for base class
535 llwarns << "Failed to create dummy widget of requested type " << llendl; 535 LL_DEBUGS("View") << "Failed to create dummy widget of requested type " << LL_ENDL;
536 return NULL; 536 return NULL;
537 } 537 }
538 } 538 }
diff --git a/linden/indra/newview/app_settings/logcontrol.xml b/linden/indra/newview/app_settings/logcontrol.xml
index 281cc38..f92f6ff 100644
--- a/linden/indra/newview/app_settings/logcontrol.xml
+++ b/linden/indra/newview/app_settings/logcontrol.xml
@@ -69,7 +69,7 @@
69 <!--<string>Openjpeg</string>--> 69 <!--<string>Openjpeg</string>-->
70 <!--<string>RLV</string>--> 70 <!--<string>RLV</string>-->
71 <!--<string>VOAvatar</string>--> 71 <!--<string>VOAvatar</string>-->
72 72 <!--<string>View</string>-->
73 <!--<string>ViewerImages</string>--> 73 <!--<string>ViewerImages</string>-->
74 <!--<string>Throttle</string>--> 74 <!--<string>Throttle</string>-->
75 <!--<string>Voice</string>--> 75 <!--<string>Voice</string>-->