Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
reduce debugging noise
- Loading branch information
Showing
with
5 additions
and
5 deletions.
-
+2
−2
src/core/qgscoordinatereferencesystem.cpp
-
+3
−3
src/core/qgsmaprenderer.cpp
|
@@ -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 ); |
|
@@ -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 ) |
|
|
|
@@ -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; |
|
|
} |
|
|
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.