Skip to content

Commit

Permalink
Move a debuging statement to QgsDebugMsg
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5494 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed May 27, 2006
1 parent 17dc1f0 commit ae5b58f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/raster/qgsrasterlayer.cpp
Expand Up @@ -3091,7 +3091,8 @@ void QgsRasterLayer::setGrayBandName(QString const & theBandNameQString)
{
//find out the name of this band
QgsRasterBandStats myRasterBandStats = rasterStatsVector[myIteratorInt];
std::cout << __FILE__ << ":" << __LINE__ << "Checking if " << myRasterBandStats.bandName.data() << " == " << grayBandNameQString.data() << std::endl;
QgsDebugMsg("Checking if " + myRasterBandStats.bandName + " == "
+ grayBandNameQString);
if (myRasterBandStats.bandName == theBandNameQString)
{
grayBandNameQString = theBandNameQString;
Expand Down

0 comments on commit ae5b58f

Please sign in to comment.