如何使用“RAISE INFO,RAISE LOG,RAISE DEBUG”来跟踪PostgreSQL函数的登录?

时间:2014-11-17 07:35:29

标签: postgresql plpgsql debug-print

CREATE OR REPLACE FUNCTION mover(src text, dst text, cpquery text, conname text, ifbin boolean) returns void as
$$
        DECLARE
                cnt integer;
                dlcnt integer;
                del_count integer;
                ret text;

        BEGIN
                SELECT  pg_catalog.dblink_copy_open(conname, dst, ifbin) INTO ret ;
                RAISE LOG 'dblink_open %',ret;

                execute 'SELECT  1 as check FROM ' || src ||' limit 1' into cnt;
                IF cnt=0 THEN
                        PERFORM pg_sleep(2);
                END IF;

                IF ifbin=true THEN
                        RAISE DEBUG 'Start to Copy data with binary';
                        execute 'COPY (' || cpquery || '  ) to function pg_catalog.dblink_copy_write with binary';
                        RAISE DEBUG 'Finish Copy data';
                ELSE
                        RAISE DEBUG 'Start to Copy data without binary';
                        execute 'COPY (' || cpquery || '  ) to function pg_catalog.dblink_copy_write';
                        RAISE DEBUG 'Finish Copy data';
                END IF;

                execute 'DELETE FROM ' || src;

                GET DIAGNOSTICS del_count=ROW_COUNT;
                RAISE INFO 'DELETE % rows',del_count;

                SELECT  pg_catalog.dblink_copy_end() INTO ret;
                RAISE LOG 'dblink_end %',ret;
        END;
$$
language plpgsql;

作为代码,我想使用RAISE将一些消息放入日志中,但位置在哪里 我的日志文件?以及RAISE DEBUG输出的位置?

1 个答案:

答案 0 :(得分:6)

它们可以输出到 Postgres 日志,报告回客户端,或两者都有。这些由服务器端设置log_min_messagesclient_min_messages控制。

有关详细信息,请参阅以下文档:

http://www.postgresql.org/docs/current/static/plpgsql-errors-and-messages.html

http://www.postgresql.org/docs/current/static/runtime-config-logging.html

建议 @a_horse_with_no_name :也可以通过客户端的SET命令设置这些参数。

可以通过 SQL set client_min_messages to 'debug';

进行设置