diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-06-13 09:15:42 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-06-13 09:15:42 -0400 |
commit | 93bafda56b7ba006da3a14a6c6783e235413176a (patch) | |
tree | b9e3abc0f1617fd76cc55ef8c36b0529ebb3f3e8 /indra/newview/llappviewer.cpp | |
parent | dcb8880f29bf8ce51e4532366477d9bf026d1abd (diff) |
MAINT-6366 - diagnostics related to animation asset downloads
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 5287f98827..775402df66 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -5829,7 +5829,6 @@ void LLAppViewer::metricsUpdateRegion(U64 region_handle) } } - /** * Attempts to start a multi-threaded metrics report to be sent back to * the grid for consumption. @@ -5847,6 +5846,11 @@ void LLAppViewer::metricsSend(bool enable_reporting) { std::string caps_url = regionp->getCapability("ViewerMetrics"); + if (gSavedSettings.getBOOL("QAModeMetrics")) + { + dump_sequential_xml("metric_asset_stats",gViewerAssetStats->asLLSD(true)); + } + // Make a copy of the main stats to send into another thread. // Receiving thread takes ownership. LLViewerAssetStats * main_stats(new LLViewerAssetStats(*gViewerAssetStats)); |