diff options
author | Graham Madarasz <graham@lindenlab.com> | 2013-06-01 13:43:52 -0700 |
---|---|---|
committer | Graham Madarasz <graham@lindenlab.com> | 2013-06-01 13:43:52 -0700 |
commit | d21fc254a795ddbb0604fd6a542327dbd92b036d (patch) | |
tree | df4ff12d33b6a1fcc6789d9546c89dcd2c673180 /indra/llcommon/llmetrics.cpp | |
parent | da6a4ac62ec5b2725bbca647c5d04f2e51967c42 (diff) |
BUG-2707 hunt for infos call crashing Kat
Diffstat (limited to 'indra/llcommon/llmetrics.cpp')
-rwxr-xr-x | indra/llcommon/llmetrics.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llcommon/llmetrics.cpp b/indra/llcommon/llmetrics.cpp index 3078139f43..ac643095b1 100755 --- a/indra/llcommon/llmetrics.cpp +++ b/indra/llcommon/llmetrics.cpp @@ -65,7 +65,8 @@ void LLMetricsImpl::recordEventDetails(const std::string& location, metrics["location"] = location; metrics["stats"] = stats; - llinfos << "LLMETRICS: " << (LLSDNotationStreamer(metrics)) << llendl; + // BUG-2707? + //llinfos << "LLMETRICS: " << (LLSDNotationStreamer(metrics)) << llendl; } // Store this: @@ -128,7 +129,8 @@ void LLMetricsImpl::printTotals(LLSD metadata) out_sd["stats"] = stats; - llinfos << "LLMETRICS: AGGREGATE: " << LLSDOStreamer<LLSDNotationFormatter>(out_sd) << llendl; + // BUG-2707? + //llinfos << "LLMETRICS: AGGREGATE: " << LLSDOStreamer<LLSDNotationFormatter>(out_sd) << llendl; } LLMetrics::LLMetrics() |