From 145ef60b960b6c8247c798ccfc1957ca63c8ac37 Mon Sep 17 00:00:00 2001 From: Yuqian Li Date: Wed, 29 Jul 2020 15:31:01 -0700 Subject: [PATCH] Remove confusing logs (#20121) 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 a3c626c2058..c1ec498398d 100644 --- a/shell/common/persistent_cache.cc +++ b/shell/common/persistent_cache.cc @@ -266,8 +266,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; }