From: Paul Ramsey Date: Tue, 30 Jun 2015 12:45:48 +0000 (+0000) Subject: #2342, demote join type message to debug X-Git-Tag: 2.2.0rc1~283 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c0f6b646c461e969b569f7202bf6660af1ae7d4;p=postgis #2342, demote join type message to debug git-svn-id: http://svn.osgeo.org/postgis/trunk@13755 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/gserialized_estimate.c b/postgis/gserialized_estimate.c index 841fffb7e..df46fc055 100644 --- a/postgis/gserialized_estimate.c +++ b/postgis/gserialized_estimate.c @@ -1161,7 +1161,7 @@ Datum gserialized_gist_joinsel(PG_FUNCTION_ARGS) /* Only respond to an inner join/unknown context join */ if (jointype != JOIN_INNER) { - elog(NOTICE, "gserialized_gist_joinsel: jointype %d not supported", jointype); + elog(DEBUG1, "%s: jointype %d not supported", __func__, jointype); PG_RETURN_FLOAT8(DEFAULT_ND_JOINSEL); } @@ -1175,7 +1175,7 @@ Datum gserialized_gist_joinsel(PG_FUNCTION_ARGS) /* TODO: handle g1 && ST_Expand(g2) */ if (!IsA(arg1, Var) || !IsA(arg2, Var)) { - elog(DEBUG1, "gserialized_gist_joinsel called with arguments that are not column references"); + elog(DEBUG1, "%s called with arguments that are not column references", __func__); PG_RETURN_FLOAT8(DEFAULT_ND_JOINSEL); }