Skip to content

Commit

Permalink
reduce debugging noise
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@12758 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jan 14, 2010
1 parent 10a5e6d commit 002416f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/core/qgscoordinatereferencesystem.cpp
Expand Up @@ -187,7 +187,7 @@ bool QgsCoordinateReferenceSystem::createFromSrsId( long id )

bool QgsCoordinateReferenceSystem::loadFromDb( QString db, QString field, long id )
{
QgsDebugMsg( "load CRS from " + db + " where " + field + " is " + QString::number( id ) );
QgsDebugMsgLevel( "load CRS from " + db + " where " + field + " is " + QString::number( id ), 3 );
mIsValidFlag = false;

QFileInfo myInfo( db );
Expand Down Expand Up @@ -1133,7 +1133,7 @@ QString QgsCoordinateReferenceSystem::proj4FromSrsId( const int theSrsId )

int QgsCoordinateReferenceSystem::openDb( QString path, sqlite3 **db )
{
QgsDebugMsg( "path = " + path );
QgsDebugMsgLevel( "path = " + path, 3 );
int myResult = sqlite3_open( path.toUtf8().data(), db );

if ( myResult )
Expand Down
6 changes: 3 additions & 3 deletions src/core/qgsmaprenderer.cpp
Expand Up @@ -647,9 +647,9 @@ void QgsMapRenderer::setDestinationSrs( const QgsCoordinateReferenceSystem& srs

const QgsCoordinateReferenceSystem& QgsMapRenderer::destinationSrs()
{
QgsDebugMsg( "* Returning destCRS" );
QgsDebugMsg( "* DestCRS.srsid() = " + QString::number( mDestCRS->srsid() ) );
QgsDebugMsg( "* DestCRS.proj4() = " + mDestCRS->toProj4() );
QgsDebugMsgLevel( "* Returning destCRS", 3 );
QgsDebugMsgLevel( "* DestCRS.srsid() = " + QString::number( mDestCRS->srsid() ), 3 );
QgsDebugMsgLevel( "* DestCRS.proj4() = " + mDestCRS->toProj4(), 3 );
return *mDestCRS;
}

Expand Down

0 comments on commit 002416f

Please sign in to comment.