Skip to content

Commit

Permalink
Decrease the debugging noise
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Jan 20, 2015
1 parent 006edcb commit 5361a69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsgeometry.cpp
Expand Up @@ -2097,7 +2097,7 @@ double QgsGeometry::closestSegmentWithContext(
double *leftOf,
double epsilon )
{
QgsDebugMsg( "Entering." );
QgsDebugMsgLevel( "Entering.", 3 );

// TODO: implement with GEOS
if ( mDirtyWkb ) //convert latest geos to mGeometry
Expand Down Expand Up @@ -2310,8 +2310,8 @@ double QgsGeometry::closestSegmentWithContext(
break;
} // switch (wkbType)

QgsDebugMsg( QString( "Exiting with nearest point %1, dist %2." )
.arg( point.toString() ).arg( sqrDist ) );
QgsDebugMsgLevel( QString( "Exiting with nearest point %1, dist %2." )
.arg( point.toString() ).arg( sqrDist ), 3 );

return sqrDist;
}
Expand Down

0 comments on commit 5361a69

Please sign in to comment.