Skip to content

Commit 9835426

Browse files
author
jef
committed
include error string when loading plugins
git-svn-id: http://svn.osgeo.org/qgis/trunk@10469 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 03924a6 commit 9835426

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgspluginmanager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ void QgsPluginManager::getPluginDescriptions()
268268
bool loaded = myLib->load();
269269
if ( !loaded )
270270
{
271-
QgsDebugMsg( "Failed to load: " + myLib->fileName() );
271+
QgsDebugMsg( QString( "Failed to load: %1 (%2)" ).arg( myLib->fileName() ).arg( myLib->errorString() ) );
272272
delete myLib;
273273
continue;
274274
}

0 commit comments

Comments
 (0)