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