From: Sandro Santilli Date: Mon, 16 Jan 2012 08:24:53 +0000 (+0000) Subject: Downgrade notice of face splitting to debug level X-Git-Tag: 2.0.0alpha1~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b3c81adcd237af12919093cd5bc8d7eb0f3dd50;p=postgis Downgrade notice of face splitting to debug level git-svn-id: http://svn.osgeo.org/postgis/trunk@8823 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/sql/sqlmm.sql.in.c b/topology/sql/sqlmm.sql.in.c index e9fc62935..d36143f31 100644 --- a/topology/sql/sqlmm.sql.in.c +++ b/topology/sql/sqlmm.sql.in.c @@ -3229,8 +3229,10 @@ BEGIN RETURN newedge.edge_id; END IF; - RAISE NOTICE 'ST_AddEdgeNewFaces: edge % splitted face %', +#ifdef POSTGIS_TOPOLOGY_DEBUG + RAISE DEBUG 'ST_AddEdgeNewFaces: edge % splitted face %', newedge.edge_id, newedge.left_face; +#endif -- Call topology.AddFace for every face containing the new edge -- @@ -3918,8 +3920,10 @@ BEGIN RETURN newedge.edge_id; END IF; - RAISE NOTICE 'ST_AddEdgeModFace: edge % splitted face %', +#ifdef POSTGIS_TOPOLOGY_DEBUG + RAISE DEBUG 'ST_AddEdgeModFace: edge % splitted face %', newedge.edge_id, newedge.left_face; +#endif -- Call topology.AddFace for every face whose boundary contains the new edge --