Skip to content

Commit

Permalink
show the correct feature's type name in debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
brushtyler committed Jan 17, 2012
1 parent 7028827 commit 9e71b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -2704,7 +2704,7 @@ bool QgsPostgresProvider::getGeometryDetails()
QgsDebugMsg( "Requested SRID is " + mRequestedSrid );
QgsDebugMsg( "Detected type is " + QString::number( mDetectedGeomType ) );
QgsDebugMsg( "Requested type is " + QString::number( mRequestedGeomType ) );
QgsDebugMsg( "Feature type name is " + QString( QGis::qgisFeatureTypes[mDetectedGeomType] ) );
QgsDebugMsg( "Feature type name is " + QString( QGis::qgisFeatureTypes[ geometryType() ] ) );
QgsDebugMsg( "Geometry is geography " + mIsGeography );
}
else
Expand Down

0 comments on commit 9e71b01

Please sign in to comment.