From: Sandro Santilli Date: Fri, 11 Aug 2017 16:38:20 +0000 (+0000) Subject: Add more debug outputs X-Git-Tag: 2.4.0beta1~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ebfb56337d99fb4a8ce20ed996ccb1ba7c766a53;p=postgis Add more debug outputs git-svn-id: http://svn.osgeo.org/postgis/trunk@15552 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/liblwgeom/lwstroke.c b/liblwgeom/lwstroke.c index ad4738b07..a99fb1e47 100644 --- a/liblwgeom/lwstroke.c +++ b/liblwgeom/lwstroke.c @@ -217,8 +217,8 @@ lwarc_linearize(POINTARRAY *to, a2 = atan2(p2->y - center.y, p2->x - center.x); a3 = atan2(p3->y - center.y, p3->x - center.x); - LWDEBUGF(2, "lwarc_linearize A1:%g A2:%g A3:%g", - a1*180/M_PI, a2*180/M_PI, a3*180/M_PI); + LWDEBUGF(2, "lwarc_linearize A1:%g (%g) A2:%g (%g) A3:%g (%g)", + a1, a1*180/M_PI, a2, a2*180/M_PI, a3, a3*180/M_PI); if ( flags & LW_LINEARIZE_FLAG_SYMMETRIC ) {{