From: [email protected] <[email protected]>
> I understood that the former is pqParseInput3() and the latter is
> pqPutMsgEnd(). They call the logging function wne conn->pfdebug is not
> NULL. Its signature is like this (that will be defined in libpq-trace.c):
>
> void pqLogMessage(const char *message, bool toServer);
Oops, the logging facility needs the destination (conn->pfdebug). So, it will
be:
void pqLogMessage(PGconn *conn, bool toServer);
The function should know where to extract the message from.
Regards
Takayuki Tsunakawa