diff options
author | Richard Linden <none@none> | 2012-07-12 22:35:51 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-07-12 22:35:51 -0700 |
commit | 5d32e23a11f272a2cdf8b6aac106534b6814ea98 (patch) | |
tree | 25134140f07de077c72a707a82005d72b25cf9b5 /indra/newview/llviewerregion.cpp | |
parent | 90547ff411db177bf6424ca553449a81a808fc0f (diff) |
SH-3275 WIP Run viewer metrics for object update messages
improved update logging API and output format
Diffstat (limited to 'indra/newview/llviewerregion.cpp')
-rw-r--r-- | indra/newview/llviewerregion.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp index e3cb985ddb..0e2927cea4 100644 --- a/indra/newview/llviewerregion.cpp +++ b/indra/newview/llviewerregion.cpp @@ -1318,9 +1318,9 @@ void LLViewerRegion::requestCacheMisses() mCacheDirty = TRUE ; // llinfos << "KILLDEBUG Sent cache miss full " << full_count << " crc " << crc_count << llendl; #if LL_RECORD_VIEWER_STATS - LLViewerStatsRecorder::instance()->beginObjectUpdateEvents(this); - LLViewerStatsRecorder::instance()->recordRequestCacheMissesEvent(full_count + crc_count); - LLViewerStatsRecorder::instance()->endObjectUpdateEvents(); + LLViewerStatsRecorder::instance().beginObjectUpdateEvents(1.f); + LLViewerStatsRecorder::instance().recordRequestCacheMissesEvent(full_count + crc_count); + LLViewerStatsRecorder::instance().endObjectUpdateEvents(); #endif } |