diff --git a/src/frontends/common/src/plugin_loader.cpp b/src/frontends/common/src/plugin_loader.cpp index 7abbf9b0b68..a044152d8d5 100644 --- a/src/frontends/common/src/plugin_loader.cpp +++ b/src/frontends/common/src/plugin_loader.cpp @@ -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; }