diff --git a/fml/platform/posix/native_library_posix.cc b/fml/platform/posix/native_library_posix.cc index 43406bc21b5e7..fb594b70c47d0 100644 --- a/fml/platform/posix/native_library_posix.cc +++ b/fml/platform/posix/native_library_posix.cc @@ -13,7 +13,7 @@ NativeLibrary::NativeLibrary(const char* path) { ::dlerror(); handle_ = ::dlopen(path, RTLD_NOW); if (handle_ == nullptr) { - FML_DLOG(ERROR) << "Could not open library '" << path << "' due to error '" + FML_LOG(ERROR) << "Could not open library '" << path << "' due to error '" << ::dlerror() << "'."; } }