From 37cddb04fd9117e312cc352b912a79bbd3dbe443 Mon Sep 17 00:00:00 2001 From: Gary Qian Date: Thu, 3 Dec 2020 17:23:04 -1000 Subject: [PATCH] Remove spammy log (#22858) --- testing/elf_loader.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/elf_loader.cc b/testing/elf_loader.cc index 6d075ecfc15..e4fbd48d39f 100644 --- a/testing/elf_loader.cc +++ b/testing/elf_loader.cc @@ -69,8 +69,8 @@ ELFAOTSymbols LoadELFSplitSymbolFromFixturesIfNeccessary() { fml::paths::JoinPaths({GetFixturesPath(), kAOTAppELFSplitFileName}); if (!fml::IsFile(elf_path)) { - FML_LOG(ERROR) << "App AOT file does not exist for this fixture. Attempts " - "to launch the Dart VM with these AOT symbols will fail."; + // We do not log here, as there is no expectation for a split library to + // exist. return {}; }