summaryrefslogtreecommitdiff
path: root/indra/llappearance/llpolymesh.cpp
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-06-01 19:36:38 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-06-01 19:36:38 -0700
commitcf3d2a06a13528cca1327becfb9e8dcb5ff4614a (patch)
treea58c89cfe474308985b07b3e86f991b886a86114 /indra/llappearance/llpolymesh.cpp
parente331566dba65b8aa33fceb6d1cec8bf0550bbd7d (diff)
BUG-2707 turn off more LL_DEBUGS to narrow down Kat's crashing cuplrit
Diffstat (limited to 'indra/llappearance/llpolymesh.cpp')
-rw-r--r--indra/llappearance/llpolymesh.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/llappearance/llpolymesh.cpp b/indra/llappearance/llpolymesh.cpp
index 907aa21279..e176d0844b 100644
--- a/indra/llappearance/llpolymesh.cpp
+++ b/indra/llappearance/llpolymesh.cpp
@@ -889,10 +889,10 @@ void LLPolyMesh::dumpDiagInfo()
std::string buf;
- LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
- LL_DEBUGS("LLPolyMesh") << " Global PolyMesh Table (DEBUG only)" << llendl;
- LL_DEBUGS("LLPolyMesh") << " Verts Faces Mem(KB) Name" << llendl;
- LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
+ //LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
+ //LL_DEBUGS("LLPolyMesh") << " Global PolyMesh Table (DEBUG only)" << llendl;
+ //LL_DEBUGS("LLPolyMesh") << " Verts Faces Mem(KB) Name" << llendl;
+ //LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
// print each loaded mesh, and it's memory usage
for(LLPolyMeshSharedDataTable::iterator iter = sGlobalSharedMeshList.begin();
@@ -906,17 +906,17 @@ void LLPolyMesh::dumpDiagInfo()
U32 num_kb = mesh->getNumKB();
buf = llformat("%8d %8d %8d %s", num_verts, num_faces, num_kb, mesh_name.c_str());
- LL_DEBUGS("LLPolyMesh") << buf << llendl;
+ //LL_DEBUGS("LLPolyMesh") << buf << llendl;
total_verts += num_verts;
total_faces += num_faces;
total_kb += num_kb;
}
- LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
+ //LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
buf = llformat("%8d %8d %8d TOTAL", total_verts, total_faces, total_kb );
- LL_DEBUGS("LLPolyMesh") << buf << llendl;
- LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
+ //LL_DEBUGS("LLPolyMesh") << buf << llendl;
+ //LL_DEBUGS("LLPolyMesh") << "-----------------------------------------------------" << llendl;
}
//-----------------------------------------------------------------------------