We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 142024e commit f2f8b19Copy full SHA for f2f8b19
src/raster/qgsrasterlayer.cpp
@@ -3091,7 +3091,8 @@ void QgsRasterLayer::setGrayBandName(QString const & theBandNameQString)
3091
{
3092
//find out the name of this band
3093
QgsRasterBandStats myRasterBandStats = rasterStatsVector[myIteratorInt];
3094
- std::cout << __FILE__ << ":" << __LINE__ << "Checking if " << myRasterBandStats.bandName.data() << " == " << grayBandNameQString.data() << std::endl;
+ QgsDebugMsg("Checking if " + myRasterBandStats.bandName + " == "
3095
+ + grayBandNameQString);
3096
if (myRasterBandStats.bandName == theBandNameQString)
3097
3098
grayBandNameQString = theBandNameQString;
0 commit comments