]> granicus.if.org Git - postgis/commitdiff
Debugging output cleanup.
authorSandro Santilli <strk@keybit.net>
Fri, 8 Oct 2004 13:21:44 +0000 (13:21 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 8 Oct 2004 13:21:44 +0000 (13:21 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@968 b70326c6-7e19-0410-871a-916f4a2858ee

lwgeom/lwgeom.c

index 38970967351787a94dfd510023098e8833fc3b9a..805bf61c086b2c4fac4c1ac6aa24200a6c3c87de 100644 (file)
@@ -13,7 +13,7 @@ lwgeom_deserialize(char *srl)
 {
        int type = lwgeom_getType(srl[0]);
 
-       lwnotice("lwgeom_deserialize got %s", lwgeom_typename(type));
+       //lwnotice("lwgeom_deserialize got %s", lwgeom_typename(type));
 
        switch (type)
        {
@@ -368,7 +368,7 @@ lwgeom_same(LWGEOM *lwgeom1, LWGEOM *lwgeom2)
        // Check boxes if both already computed 
        if ( lwgeom1->bbox && lwgeom2->bbox )
        {
-               lwnotice("bbox1:%p, bbox2:%p", lwgeom1->bbox, lwgeom2->bbox);
+               //lwnotice("bbox1:%p, bbox2:%p", lwgeom1->bbox, lwgeom2->bbox);
                if ( ! box2d_same(lwgeom1->bbox, lwgeom2->bbox) ) return 0;
        }