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

Sim*_* Su 8 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;
Run Code Online (Sandbox Code Playgroud)

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

kha*_*son 9

它们可以输出到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';

  • 您可能希望添加两个设置可以使用`SET`命令动态更改(尤其是`client_min_messages`) (3认同)