summaryrefslogtreecommitdiff
path: root/indra/llcommon/llmetrics.cpp
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-06-01 13:43:52 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-06-01 13:43:52 -0700
commitd21fc254a795ddbb0604fd6a542327dbd92b036d (patch)
treedf4ff12d33b6a1fcc6789d9546c89dcd2c673180 /indra/llcommon/llmetrics.cpp
parentda6a4ac62ec5b2725bbca647c5d04f2e51967c42 (diff)
BUG-2707 hunt for infos call crashing Kat
Diffstat (limited to 'indra/llcommon/llmetrics.cpp')
-rwxr-xr-xindra/llcommon/llmetrics.cpp6
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()