aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorArmin Weatherwax2010-07-31 13:36:46 +0200
committerJacek Antonelli2010-08-02 00:11:26 -0500
commitaae5430ef724236dec20622247b7bd2d7c7e84ff (patch)
treebeabde20b1cbe8b7b8d6d0c5c2a19873fc5a2b7c /linden/indra
parentreplace llwarns by LL_DEBUGS("View") in llview.h - pointless spam for enduser (diff)
downloadmeta-impy-aae5430ef724236dec20622247b7bd2d7c7e84ff.zip
meta-impy-aae5430ef724236dec20622247b7bd2d7c7e84ff.tar.gz
meta-impy-aae5430ef724236dec20622247b7bd2d7c7e84ff.tar.bz2
meta-impy-aae5430ef724236dec20622247b7bd2d7c7e84ff.tar.xz
move llwarns ... "Grav SET to" ... to LL_DEBUGS("BodyPhysics")
Diffstat (limited to 'linden/indra')
-rw-r--r--linden/indra/newview/app_settings/logcontrol.xml1
-rw-r--r--linden/indra/newview/llvoavatar.cpp6
2 files changed, 4 insertions, 3 deletions
diff --git a/linden/indra/newview/app_settings/logcontrol.xml b/linden/indra/newview/app_settings/logcontrol.xml
index f92f6ff..cff9a56 100644
--- a/linden/indra/newview/app_settings/logcontrol.xml
+++ b/linden/indra/newview/app_settings/logcontrol.xml
@@ -50,6 +50,7 @@
50 <!--<string>AppCache</string>--> 50 <!--<string>AppCache</string>-->
51 <!--<string>APR</string>--> 51 <!--<string>APR</string>-->
52 <!--<string>AudioEngine</string>--> 52 <!--<string>AudioEngine</string>-->
53 <!--<string>BodyPhysics</string>-->
53 <!--<string>InitInfo</string>--> 54 <!--<string>InitInfo</string>-->
54 <!--<string>isOwnedSelf</string>--> 55 <!--<string>isOwnedSelf</string>-->
55 <!--<string>HUDEffect</string>--> 56 <!--<string>HUDEffect</string>-->
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp
index 53962a9..2732d48 100644
--- a/linden/indra/newview/llvoavatar.cpp
+++ b/linden/indra/newview/llvoavatar.cpp
@@ -8560,17 +8560,17 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys )
8560 8560
8561 if(param->getID() == 507 && newWeight != getActualBoobGrav()) 8561 if(param->getID() == 507 && newWeight != getActualBoobGrav())
8562 { 8562 {
8563 llwarns << "Boob Grav SET to " << newWeight << " for " << getFullname() << llendl; 8563 LL_DEBUGS("BodyPhysics")<< "Boob Grav SET to " << newWeight << " for " << getFullname() << LL_ENDL;
8564 setActualBoobGrav(newWeight); 8564 setActualBoobGrav(newWeight);
8565 } 8565 }
8566 if(param->getID() == 795 && newWeight != getActualButtGrav()) 8566 if(param->getID() == 795 && newWeight != getActualButtGrav())
8567 { 8567 {
8568 llwarns << "Butt Grav SET to " << newWeight << " for " << getFullname() << llendl; 8568 LL_DEBUGS("BodyPhysics")<< "Butt Grav SET to " << newWeight << " for " << getFullname() << LL_ENDL;
8569 setActualButtGrav(newWeight); 8569 setActualButtGrav(newWeight);
8570 } 8570 }
8571 if(param->getID() == 157 && newWeight != getActualFatGrav()) 8571 if(param->getID() == 157 && newWeight != getActualFatGrav())
8572 { 8572 {
8573 llwarns << "Fat Grav SET to " << newWeight << " for " << getFullname() << llendl; 8573 LL_DEBUGS("BodyPhysics")<< "Fat Grav SET to " << newWeight << " for " << getFullname() << LL_ENDL;
8574 setActualFatGrav(newWeight); 8574 setActualFatGrav(newWeight);
8575 } 8575 }
8576 8576