]> granicus.if.org Git - postgis/commitdiff
Removed debug statements
authorBborie Park <bkpark at ucdavis.edu>
Sat, 6 Apr 2013 18:14:00 +0000 (18:14 +0000)
committerBborie Park <bkpark at ucdavis.edu>
Sat, 6 Apr 2013 18:14:00 +0000 (18:14 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@11257 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/lwgeom_btree.c

index 3954bba4e06e6dd9ba36d65115a46fa2dc2f288a..5e6aca9e7c3b48f6ea75186213888d5bdb836242 100644 (file)
@@ -189,9 +189,6 @@ Datum lwgeom_eq(PG_FUNCTION_ARGS)
        empty2 = ( gserialized_get_gbox_p(geom2, &box2) == LW_FAILURE );
        PG_FREE_IF_COPY(geom1, 0);
        PG_FREE_IF_COPY(geom2, 1);
-       POSTGIS_DEBUGF(3, "empty1, empty2 = %d, %d", empty1, empty2);
-       POSTGIS_DEBUGF(4, "%f ~ %f, %f ~ %f, %f ~ %f, %f ~ %f",
-               box1.xmin, box2.xmin, box1.ymin, box2.ymin, box1.xmax, box2.xmax, box1.ymax, box2.ymax);
 
        if  ( empty1 != empty2 ) 
        {