Skip to content

Commit

Permalink
Fix log level typo from ERROR to INFO (flutter#8180)
Browse files Browse the repository at this point in the history
The old typo is probably caused by
flutter/flutter#29320 which has just been
fixed.

TBR: [email protected]
  • Loading branch information
liyuqian authored Mar 15, 2019
1 parent c033aa4 commit 015c024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/common/persistent_cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ void PersistentCache::DumpSkp(const SkData& data) {
auto ticks = fml::TimePoint::Now().ToEpochDelta().ToNanoseconds();
name_stream << "shader_dump_" << std::to_string(ticks) << ".skp";
std::string file_name = name_stream.str();
FML_LOG(ERROR) << "Dumping " << file_name;
FML_LOG(INFO) << "Dumping " << file_name;
auto mapping = std::make_unique<fml::DataMapping>(
std::vector<uint8_t>{data.bytes(), data.bytes() + data.size()});
PersistentCacheStore(GetWorkerTaskRunner(), cache_directory_,
Expand Down

0 comments on commit 015c024

Please sign in to comment.