Extend loading frontend error message (#18950)

This commit is contained in:
Ilya Churaev 2023-08-03 11:19:18 +04:00 committed by GitHub
parent 1501e29cfe
commit aa4cbf36e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,7 +143,8 @@ bool PluginInfo::load_internal() {
so = ov::util::load_shared_object(m_file_path.c_str());
#endif
} catch (const std::exception& ex) {
OPENVINO_DEBUG << "Error loading FrontEnd '" << m_file_path << "': " << ex.what() << std::endl;
OPENVINO_DEBUG << "Error loading FrontEnd '" << m_file_path << "': " << ex.what()
<< " Please check that frontend library doesn't have unresolved dependencies." << std::endl;
return false;
}