From: Regina Obe Date: Sun, 22 Sep 2013 01:17:59 +0000 (+0000) Subject: #2440 -- remove warnings from functions -- (pushing this to a debug level notice) X-Git-Tag: 2.2.0rc1~1368 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=debe2dd531cae7ab98eaba6c9074f0998397e213;p=postgis #2440 -- remove warnings from functions -- (pushing this to a debug level notice) git-svn-id: http://svn.osgeo.org/postgis/trunk@11962 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in index 12cc60fe5..a430aa613 100644 --- a/postgis/postgis.sql.in +++ b/postgis/postgis.sql.in @@ -3,7 +3,7 @@ -- $Id$ -- -- PostGIS - Spatial Types for PostgreSQL --- http://postgis.refractions.net +-- http://postgis.net -- Copyright 2001-2003 Refractions Research Inc. -- -- This is free software; you can redistribute and/or modify it under @@ -34,7 +34,7 @@ CREATE OR REPLACE FUNCTION _postgis_deprecate(oldname text, newname text, versio RETURNS void AS $$ BEGIN - RAISE WARNING '% signature was deprecated in %. Please use %', oldname, version, newname; + RAISE DEBUG '% signature was deprecated in %. Please use %', oldname, version, newname; END; $$ LANGUAGE 'plpgsql' IMMUTABLE STRICT;