From afd45eefff9ef0faa749a356d9ecca384c0fdb54 Mon Sep 17 00:00:00 2001 From: Alessandro Pasotti Date: Sat, 12 Aug 2017 17:06:40 +0200 Subject: [PATCH] QgsDebugMsg -> QgsDebugMsgLevel + typo --- src/providers/gdal/qgsgdaldataitems.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/providers/gdal/qgsgdaldataitems.cpp b/src/providers/gdal/qgsgdaldataitems.cpp index a769eff6e810..bae3096bde62 100644 --- a/src/providers/gdal/qgsgdaldataitems.cpp +++ b/src/providers/gdal/qgsgdaldataitems.cpp @@ -51,6 +51,7 @@ QgsGdalLayerItem::QgsGdalLayerItem( QgsDataItem *parent, } } + bool QgsGdalLayerItem::setCrs( const QgsCoordinateReferenceSystem &crs ) { GDALDatasetH hDS = GDALOpen( mPath.toUtf8().constData(), GA_Update ); @@ -71,14 +72,14 @@ bool QgsGdalLayerItem::setCrs( const QgsCoordinateReferenceSystem &crs ) QVector QgsGdalLayerItem::createChildren() { - QgsDebugMsg( "Entered, path=" + path() ); + QgsDebugMsgLevel( "Entered, path=" + path(), 3 ); QVector children; // get children from sublayers if ( !mSublayers.isEmpty() ) { QgsDataItem *childItem = nullptr; - QgsDebugMsg( QString( "got %1 sublayers" ).arg( mSublayers.count() ) ); + QgsDebugMsgLevel( QString( "got %1 sublayers" ).arg( mSublayers.count() ), 3 ); for ( int i = 0; i < mSublayers.count(); i++ ) { QString name = mSublayers[i]; @@ -172,7 +173,7 @@ QGISEXTERN QgsDataItem *dataItem( QString path, QgsDataItem *parentItem ) info.setFile( path ); QString name = info.fileName(); - QgsDebugMsgLevel( "thePath= " + path + " tmpPath= " + tmpPath + " name= " + name + QgsDebugMsgLevel( "path= " + path + " tmpPath= " + tmpPath + " name= " + name + " suffix= " + suffix + " vsiPrefix= " + vsiPrefix, 3 ); // allow only normal files or VSIFILE items to continue