summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-03-06 09:53:11 -0500
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-03-06 09:53:11 -0500
commit7b0b5726dd2fcf5b79ed1b112891655fad0f96eb (patch)
treeb4c826d250b74da4d60464789a20f2ddc6b0da28
parentec1bc19d01715299209d9f00230e4681917bde12 (diff)
make it clearer when DebugForceAppearanceRequestFailure is on
-rwxr-xr-xindra/newview/llvoavatar.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index f6fd8b2409..1bc26a7133 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -2937,6 +2937,10 @@ BOOL LLVOAvatar::updateCharacter(LLAgent &agent)
S32 last_received_cof_version = LLAppearanceMgr::instance().getLastAppearanceUpdateCOFVersion();
debug_line += llformat(" - cof: %d req: %d rcv:%d",
curr_cof_version, last_request_cof_version, last_received_cof_version);
+ if (gSavedSettings.getBOOL("DebugForceAppearanceRequestFailure"))
+ {
+ debug_line += " FORCING ERRS";
+ }
}
addDebugText(debug_line);
}