| 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;
|
|
|