]> granicus.if.org Git - postgis/commitdiff
#2440 -- remove warnings from functions -- (pushing this to a debug level notice)
authorRegina Obe <lr@pcorp.us>
Sun, 22 Sep 2013 01:17:59 +0000 (01:17 +0000)
committerRegina Obe <lr@pcorp.us>
Sun, 22 Sep 2013 01:17:59 +0000 (01:17 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@11962 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/postgis.sql.in

index 12cc60fe56f2f27eeafadd9a4e7a5fcc714d55a8..a430aa6132497918bdeba0f3297e9b3e25f5ffd1 100644 (file)
@@ -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;