mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix log level typo from ERROR to INFO (#8180)
The old typo is probably caused by https://github.com/flutter/flutter/issues/29320 which has just been fixed. TBR: chinmaygarde@google.com
This commit is contained in:
parent
c033aa4696
commit
015c0246ae
@ -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_,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user