Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(779)

Unified Diff: net/disk_cache/rankings.cc

Issue 82913011: LOG(INFO) tidying in net/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/disk_cache/rankings.cc
diff --git a/net/disk_cache/rankings.cc b/net/disk_cache/rankings.cc
index ff9913e252aea37d54a9f62876255374a4e68a98..8377e9beb90113741eafefad13389e86aa140034 100644
--- a/net/disk_cache/rankings.cc
+++ b/net/disk_cache/rankings.cc
@@ -895,7 +895,7 @@ void Rankings::InvalidateIterators(CacheRankingsBlock* node) {
for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
++it) {
if (it->first == address) {
- DLOG(INFO) << "Invalidating iterator at 0x" << std::hex << address;
+ DVLOG(0) << "Invalidating iterator at 0x" << std::hex << address;
it->second->Discard();
}
}

Powered by Google App Engine
This is Rietveld 408576698