Skip to content
This repository has been archived by the owner on Oct 18, 2018. It is now read-only.

Commit

Permalink
Do not log memory statistics because they are not pretty useful right…
Browse files Browse the repository at this point in the history
… now. Fixes issue #106
  • Loading branch information
whimboo committed Apr 11, 2012
1 parent c3ee4e9 commit a9e0be9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion extension/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ exports.main = function (options, callbacks) {
gData.current.memory = aData;

widget.port.emit('update_memory', aData);
logger.log(config.application.topic_memory_statistics, aData);

// Memory statistics aren't pretty useful yet to be logged
// See: https://github.com/mozilla/memchaser/issues/106
//logger.log(config.application.topic_memory_statistics, aData);
});

garbage_collector.reporter.on(config.application.topic_gc_statistics, function (aData) {
Expand Down

0 comments on commit a9e0be9

Please sign in to comment.