Bug 797066 - Make javascript.options.mem.log only log the GC/CC details in the Console. r=terrence

This commit is contained in:
Girish Sharma 2012-10-03 00:57:31 +05:30
Родитель 1016f5ef0b
Коммит e5802af749
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -3145,7 +3145,7 @@ nsJSContext::CycleCollectNow(nsICycleCollectorListener *aListener,
}
}
if (sPostGCEventsToConsole || sPostGCEventsToObserver) {
if (sPostGCEventsToObserver) {
NS_NAMED_MULTILINE_LITERAL_STRING(kJSONFmt,
NS_LL("{ \"timestamp\": %llu, ")
NS_LL("\"duration\": %llu, ")
@ -3506,7 +3506,7 @@ DOMGCSliceCallback(JSRuntime *aRt, js::GCProgress aProgress, const js::GCDescrip
}
}
if (sPostGCEventsToConsole || sPostGCEventsToObserver) {
if (sPostGCEventsToObserver) {
nsString json;
json.Adopt(aDesc.formatJSON(aRt, PR_Now()));
nsRefPtr<NotifyGCEndRunnable> notify = new NotifyGCEndRunnable(json);