Skip to content

Commit

Permalink
include error string when loading plugins
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@10469 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 5, 2009
1 parent b8d5dc6 commit 491ab37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgspluginmanager.cpp
Expand Up @@ -268,7 +268,7 @@ void QgsPluginManager::getPluginDescriptions()
bool loaded = myLib->load();
if ( !loaded )
{
QgsDebugMsg( "Failed to load: " + myLib->fileName() );
QgsDebugMsg( QString( "Failed to load: %1 (%2)" ).arg( myLib->fileName() ).arg( myLib->errorString() ) );
delete myLib;
continue;
}
Expand Down

0 comments on commit 491ab37

Please sign in to comment.