Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Better diagnostics for CRS tests debug output
  • Loading branch information
timlinux committed Apr 8, 2012
1 parent b9bf17e commit aa6d5b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/src/core/testqgscoordinatereferencesystem.cpp
Expand Up @@ -279,6 +279,8 @@ void TestQgsCoordinateReferenceSystem::debugPrint(
QgsDebugMsg( "* Valid : " + ( theCrs.isValid() ? QString( "true" ) :
QString( "false" ) ) );
QgsDebugMsg( "* SrsId : " + QString::number( theCrs.srsid() ) );
QgsDebugMsg( "* EPSG ID : " + theCrs.authid() );
QgsDebugMsg( "* PGIS ID : " + QString::number( theCrs.postgisSrid() ) );
QgsDebugMsg( "* Proj4 : " + theCrs.toProj4() );
QgsDebugMsg( "* WKT : " + theCrs.toWkt() );
QgsDebugMsg( "* Desc. : " + theCrs.description() );
Expand Down

0 comments on commit aa6d5b3

Please sign in to comment.