From: Sandro Santilli Date: Sat, 31 Dec 2011 09:47:06 +0000 (+0000) Subject: Use DEBUG level for printing SQL being executed... X-Git-Tag: 2.0.0alpha1~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e4bb07c48726960236a27c19e0d6bfad07abf9a;p=postgis Use DEBUG level for printing SQL being executed... git-svn-id: http://svn.osgeo.org/postgis/trunk@8625 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/sql/query/getfacebypoint.sql b/topology/sql/query/getfacebypoint.sql index 23946dbcf..8c812b9bf 100644 --- a/topology/sql/query/getfacebypoint.sql +++ b/topology/sql/query/getfacebypoint.sql @@ -136,7 +136,7 @@ BEGIN || 'WHERE ST_DWithin(e.geom, ' || quote_literal(apoint::text)||'::geometry,' || tol1::text || ')=true;'; end if; - raise notice ' ==> %',sql; + RAISE DEBUG ' ==> %',sql; BEGIN EXECUTE sql INTO STRICT idface;