Skip to content

Commit aa6d5b3

Browse files
committed
Better diagnostics for CRS tests debug output
1 parent b9bf17e commit aa6d5b3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/src/core/testqgscoordinatereferencesystem.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,8 @@ void TestQgsCoordinateReferenceSystem::debugPrint(
279279
QgsDebugMsg( "* Valid : " + ( theCrs.isValid() ? QString( "true" ) :
280280
QString( "false" ) ) );
281281
QgsDebugMsg( "* SrsId : " + QString::number( theCrs.srsid() ) );
282+
QgsDebugMsg( "* EPSG ID : " + theCrs.authid() );
283+
QgsDebugMsg( "* PGIS ID : " + QString::number( theCrs.postgisSrid() ) );
282284
QgsDebugMsg( "* Proj4 : " + theCrs.toProj4() );
283285
QgsDebugMsg( "* WKT : " + theCrs.toWkt() );
284286
QgsDebugMsg( "* Desc. : " + theCrs.description() );

0 commit comments

Comments
 (0)