diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-17 18:08:04 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-17 18:08:04 +0000 |
commit | 1be8056c7f7706cd7c9d878dd01569eeac9705ac (patch) | |
tree | aeae74799ba846ef9629680df681714338c021bd /chrome/common/notification_service.cc | |
parent | f3e2b90fde192be73daeaf35f40151582ad8a3e2 (diff) | |
download | chromium_src-1be8056c7f7706cd7c9d878dd01569eeac9705ac.zip chromium_src-1be8056c7f7706cd7c9d878dd01569eeac9705ac.tar.gz chromium_src-1be8056c7f7706cd7c9d878dd01569eeac9705ac.tar.bz2 |
Remove LOG(INFO) spam.
If someone has time to fix this, they should.
But for now, we need our logs to be useful and they're instead dominated
by this unuseful message.
BUG=11010
Review URL: http://codereview.chromium.org/3413019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59818 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/notification_service.cc')
-rw-r--r-- | chrome/common/notification_service.cc | 9 |
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 |