print warning if the plugin cannot be loaded as it is lacking an interface
This commit is contained in:
parent
c731797c53
commit
2626f81a45
1 changed files with 4 additions and 0 deletions
|
@ -226,6 +226,10 @@ void datasource_cache::register_datasources(const std::string& str)
|
|||
#endif
|
||||
registered_=true;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::clog << "Problem loading plugin library '" << itr->path().string() << "' (plugin is lacking compatible interface" << std::endl;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue