From 3f1700cd45c40ecc54573947de1dd95fce496af7 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Fri, 8 Oct 2004 13:21:44 +0000 Subject: [PATCH] Debugging output cleanup. git-svn-id: http://svn.osgeo.org/postgis/trunk@968 b70326c6-7e19-0410-871a-916f4a2858ee --- lwgeom/lwgeom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lwgeom/lwgeom.c b/lwgeom/lwgeom.c index 389709673..805bf61c0 100644 --- a/lwgeom/lwgeom.c +++ b/lwgeom/lwgeom.c @@ -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; } -- 2.40.0