summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/common/notification_service.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/common/notification_service.cc b/chrome/common/notification_service.cc
index be4b1b7..cd92bb3 100644
--- a/chrome/common/notification_service.cc
+++ b/chrome/common/notification_service.cc
@@ -132,9 +132,12 @@ NotificationService::~NotificationService() {
if (observer_counts_[i] > 0) {
// This may not be completely fixable -- see
// http://code.google.com/p/chromium/issues/detail?id=11010 .
- // But any new leaks should be fixed.
- LOG(INFO) << observer_counts_[i] << " notification observer(s) leaked"
- << " of notification type " << i;
+
+ // It would be nice to track new leaks, but this currently
+ // spams the console too much to be useful, making it hard to track
+ // down other problems.
+ // LOG(INFO) << observer_counts_[i] << " notification observer(s) leaked"
+ // << " of notification type " << i;
}
}
#endif