From e0e92ecd2481f50e37e643bd33ce86d02e352dd5 Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Fri, 25 May 2018 10:31:56 -0700 Subject: [PATCH] Reduce log spam: failing to find an instructions buffer isn't an error for ordinary core snapshots. (flutter/engine#5370) --- engine/src/flutter/fml/platform/posix/native_library_posix.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/fml/platform/posix/native_library_posix.cc b/engine/src/flutter/fml/platform/posix/native_library_posix.cc index 934d1d1a7c6..2fd72dfb4b8 100644 --- a/engine/src/flutter/fml/platform/posix/native_library_posix.cc +++ b/engine/src/flutter/fml/platform/posix/native_library_posix.cc @@ -60,7 +60,7 @@ fxl::RefPtr NativeLibrary::CreateForCurrentProcess() { const uint8_t* NativeLibrary::ResolveSymbol(const char* symbol) { auto resolved_symbol = static_cast(::dlsym(handle_, symbol)); if (resolved_symbol == nullptr) { - FXL_DLOG(ERROR) << "Could not resolve symbol in library: " << symbol; + FXL_DLOG(INFO) << "Could not resolve symbol in library: " << symbol; } return resolved_symbol; }