Skip to content

Commit f2f8b19

Browse files
author
g_j_m
committed
Move a debuging statement to QgsDebugMsg
git-svn-id: http://svn.osgeo.org/qgis/trunk@5494 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 142024e commit f2f8b19

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/raster/qgsrasterlayer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3091,7 +3091,8 @@ void QgsRasterLayer::setGrayBandName(QString const & theBandNameQString)
30913091
{
30923092
//find out the name of this band
30933093
QgsRasterBandStats myRasterBandStats = rasterStatsVector[myIteratorInt];
3094-
std::cout << __FILE__ << ":" << __LINE__ << "Checking if " << myRasterBandStats.bandName.data() << " == " << grayBandNameQString.data() << std::endl;
3094+
QgsDebugMsg("Checking if " + myRasterBandStats.bandName + " == "
3095+
+ grayBandNameQString);
30953096
if (myRasterBandStats.bandName == theBandNameQString)
30963097
{
30973098
grayBandNameQString = theBandNameQString;

0 commit comments

Comments
 (0)