Skip to content

Commit

Permalink
Fix misleading debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Dec 20, 2021
1 parent 8f3f9cf commit d7a1256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -1486,7 +1486,7 @@ QgisApp::QgisApp( QSplashScreen *splash, bool restorePlugins, bool skipBadLayers
// set handler for missing layers (will be owned by QgsProject)
if ( !mSkipBadLayers )
{
QgsDebugMsg( QStringLiteral( "NOT creating bad layers handler" ) );
QgsDebugMsgLevel( QStringLiteral( "Creating bad layers handler" ), 2 );
mAppBadLayersHandler = new QgsHandleBadLayersHandler();
QgsProject::instance()->setBadLayerHandler( mAppBadLayersHandler );
}
Expand Down

0 comments on commit d7a1256

Please sign in to comment.