Re: Showing debug messages in my C function - Mailing list pgsql-general

From Tom Lane
Subject Re: Showing debug messages in my C function
Date
Msg-id 9369.1271189044@sss.pgh.pa.us
Whole thread Raw
In response to Showing debug messages in my C function  (Jorge Arevalo <jorgearevalo@gis4free.org>)
Responses Re: Showing debug messages in my C function  (Jorge Arevalo <jorgearevalo@gis4free.org>)
List pgsql-general
Jorge Arevalo <jorgearevalo@gis4free.org> writes:
> I'm sorry, because this may be a simple question: I'm programming a C
> function that returns a set (PostgreSQL 8.4). The function crash, and
> I'm trying to
> debug it. I've read:

> http://www.postgresql.org/docs/8.4/interactive/xfunc-c.html
> http://www.postgresql.org/docs/8.4/interactive/error-message-reporting.html
> http://www.postgresql.org/docs/current/static/runtime-config-logging.html

> but I can't see any of my log messages.

Seems likely to me that the function is crashing before it gets to any
of the elog calls; which would most likely be a problem in linking or in
declaring the function.  Did you remember to use the
PG_FUNCTION_INFO_V1() macro?  Try writing a trivial function that only
does an elog and see what it takes to get that to work.

            regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: psql's \d display of unique index vs. constraint
Next
From: Scott Marlowe
Date:
Subject: Re: psql's \d display of unique index vs. constraint