未验证 提交 0e1966cd 编写于 作者: R Ryan Macnak 提交者: GitHub

Reduce log spam: failing to find an instructions buffer isn't an error for...

Reduce log spam: failing to find an instructions buffer isn't an error for ordinary core snapshots. (#5370)
上级 a1a54ad1
......@@ -60,7 +60,7 @@ fxl::RefPtr<NativeLibrary> NativeLibrary::CreateForCurrentProcess() {
const uint8_t* NativeLibrary::ResolveSymbol(const char* symbol) {
auto resolved_symbol = static_cast<const uint8_t*>(::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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册