summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2011-05-11 12:19:36 -0400
committerNyx (Neal Orman) <nyx@lindenlab.com>2011-05-11 12:19:36 -0400
commitef0057909fcf7eaee6bdff4a58492fd17ffdd9a4 (patch)
tree3fc82c743aea74780ee4b80260092e1b662077bf
parent8ca5050231b37fc92b5d123b3564cbec6c11778d (diff)
SH-1522 FIX removed old debugging code that generated avatar_lad_log.txt
Old debugging code, should be very low risk to remove.
-rw-r--r--indra/newview/llvoavatar.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index 4767ba2bed..68637a7ed9 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -5414,18 +5414,6 @@ BOOL LLVOAvatar::loadAvatar()
}
}
- // Uncomment to enable avatar_lad.xml debugging.
- std::ofstream file;
- file.open("avatar_lad.log");
- for( LLViewerVisualParam* param = (LLViewerVisualParam*) getFirstVisualParam();
- param;
- param = (LLViewerVisualParam*) getNextVisualParam() )
- {
- param->getInfo()->toStream(file);
- file << std::endl;
- }
-
- file.close();
return TRUE;
}