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

Unified Diff: Source/WebCore/history/PageCache.cpp

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 years, 8 months 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
« no previous file with comments | « Source/WebCore/history/CachedFrame.cpp ('k') | Source/WebCore/html/FTPDirectoryDocument.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/history/PageCache.cpp
diff --git a/Source/WebCore/history/PageCache.cpp b/Source/WebCore/history/PageCache.cpp
index d66750012e6fb4f9a7a4c42095fe3baf64208bab..333d03afe54692d4ab2e362f282e969e3af00754 100644
--- a/Source/WebCore/history/PageCache.cpp
+++ b/Source/WebCore/history/PageCache.cpp
@@ -59,7 +59,7 @@ namespace WebCore {
#if PLATFORM(CHROMIUM) || !defined(NDEBUG)
-#define PCLOG(...) LOG(PageCache, "%*s%s", indentLevel*4, "", makeString(__VA_ARGS__).utf8().data())
+#define PCLOG(...) LOG_INFO(PageCache, "%*s%s", indentLevel*4, "", makeString(__VA_ARGS__).utf8().data())
// Used in histograms, please only add at the end, and do not remove elements (renaming e.g. to "FooEnumUnused1" is fine).
// This is because statistics may be gathered from histograms between versions over time, and re-using values causes collisions.
@@ -472,7 +472,7 @@ CachedPage* PageCache::get(HistoryItem* item)
if (!cachedPage->hasExpired())
return cachedPage;
- LOG(PageCache, "Not restoring page for %s from back/forward cache because cache entry has expired", item->url().string().ascii().data());
+ LOG_INFO(PageCache, "Not restoring page for %s from back/forward cache because cache entry has expired", item->url().string().ascii().data());
pageCache()->remove(item);
}
return 0;
« no previous file with comments | « Source/WebCore/history/CachedFrame.cpp ('k') | Source/WebCore/html/FTPDirectoryDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698