Skip to content

Commit

Permalink
downgrade plugin load message from WARNING to INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Mar 1, 2013
1 parent 19183dd commit 3e8be6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgspluginregistry.cpp
Expand Up @@ -317,7 +317,7 @@ void QgsPluginRegistry::loadCppPlugin( QString theFullPathName )
addPlugin( baseName, QgsPluginMetadata( myLib.fileName(), pName(), pl ) );
//add it to the qsettings file [ts]
settings.setValue( "/Plugins/" + baseName, true );
QgsMessageLog::logMessage( QObject::tr( "Loaded %1 (Path: %2)" ).arg( pName() ).arg( myLib.fileName() ), QObject::tr( "Plugins" ) );
QgsMessageLog::logMessage( QObject::tr( "Loaded %1 (Path: %2)" ).arg( pName() ).arg( myLib.fileName() ), QObject::tr( "Plugins" ), QgsMessageLog::INFO );

QObject *o = dynamic_cast<QObject *>( pl );
if ( o )
Expand Down

0 comments on commit 3e8be6c

Please sign in to comment.