Skip to content

Commit

Permalink
Less verbose application exit output
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Aug 10, 2017
1 parent abf7681 commit 323883f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/auth/qgsauthmethodregistry.cpp
Expand Up @@ -151,7 +151,7 @@ QgsAuthMethodRegistry::~QgsAuthMethodRegistry()

while ( it != mAuthMethods.end() )
{
QgsDebugMsg( QString( "cleanup: %1" ).arg( it->first ) );
QgsDebugMsgLevel( QString( "cleanup: %1" ).arg( it->first ), 5 );
QString lib = it->second->library();
QLibrary myLib( lib );
if ( myLib.isLoaded() )
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsproviderregistry.cpp
Expand Up @@ -235,7 +235,7 @@ void QgsProviderRegistry::clean()

while ( it != mProviders.end() )
{
QgsDebugMsg( QString( "cleanup:%1" ).arg( it->first ) );
QgsDebugMsgLevel( QString( "cleanup:%1" ).arg( it->first ), 5 );
QString lib = it->second->library();
if ( !lib.isEmpty() )
{
Expand Down

0 comments on commit 323883f

Please sign in to comment.