From: Sandro Santilli Date: Thu, 22 Sep 2011 07:22:17 +0000 (+0000) Subject: Reduce noice produced by ST_AddEdgeModFace at NOTICE level [RT-SIGTA] X-Git-Tag: 2.0.0alpha1~973 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfcbd7726f2e84c0c394c97f4f272973ea2facc9;p=postgis Reduce noice produced by ST_AddEdgeModFace at NOTICE level [RT-SIGTA] git-svn-id: http://svn.osgeo.org/postgis/trunk@7881 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/sql/sqlmm.sql b/topology/sql/sqlmm.sql index 5726900b9..21ac8a937 100644 --- a/topology/sql/sqlmm.sql +++ b/topology/sql/sqlmm.sql @@ -3747,7 +3747,7 @@ BEGIN RAISE NOTICE 'ST_AddEdgeModFace: edge % splitted face %', newedge.edge_id, newedge.left_face; - -- Call topology.AddFace for every face containing the new edge + -- Call topology.AddFace for every face whose boundary contains the new edge p1 = ST_StartPoint(newedge.cleangeom); p2 = ST_PointN(newedge.cleangeom, 2); FOR rec IN SELECT geom FROM ST_Dump(fan.post) @@ -3763,7 +3763,7 @@ BEGIN -- IF newedge.left_face != 0 THEN -- { - RAISE NOTICE 'Checking face %', ST_AsText(rec.geom); + RAISE DEBUG 'Checking face %', ST_AsText(rec.geom); -- Skip this if our edge is on the right side IF ST_IsEmpty(ST_GeometryN( @@ -3780,7 +3780,7 @@ BEGIN END IF; -- } - RAISE NOTICE 'Adding face %', ST_AsText(rec.geom); + RAISE DEBUG 'Adding face %', ST_AsText(rec.geom); sql := 'SELECT topology.AddFace(' || quote_literal(atopology) || ', ' || quote_literal(rec.geom::text) || ', true)';