From ce14297a6115edf3eda97067633a45ba78d14ce6 Mon Sep 17 00:00:00 2001 From: Yuqian Li Date: Wed, 29 Jul 2020 10:43:11 -0700 Subject: [PATCH] Remove confusing logs Fixes https://github.com/flutter/flutter/issues/62468 --- shell/common/persistent_cache.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/shell/common/persistent_cache.cc b/shell/common/persistent_cache.cc index 993e8c73f26e1..18727c18bf759 100644 --- a/shell/common/persistent_cache.cc +++ b/shell/common/persistent_cache.cc @@ -246,8 +246,6 @@ sk_sp PersistentCache::load(const SkData& key) { auto result = PersistentCache::LoadFile(*cache_directory_, file_name); if (result != nullptr) { TRACE_EVENT0("flutter", "PersistentCacheLoadHit"); - } else { - FML_LOG(INFO) << "PersistentCache::load failed: " << file_name; } return result; }