From a3724f5593e779291affafe399e3d9c8ecf150fa Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Thu, 29 Jun 2023 10:51:14 +0900 Subject: [PATCH] Downgrade log message. It is pointed out in https://www.pgpool.net/mantisbt/view.php?id=806 that there are log entries in the log file: LOG: pool_pending_message_set_flush_request: msg: Parse The messages were for debugging and the log level should have been a DEBUG*. So I changed the log level from LOG to DEBUG5. --- src/context/pool_session_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/pool_session_context.c b/src/context/pool_session_context.c index c62eb8334..708277191 100644 --- a/src/context/pool_session_context.c +++ b/src/context/pool_session_context.c @@ -1725,7 +1725,7 @@ pool_pending_message_set_flush_request(void) { POOL_PENDING_MESSAGE *msg = (POOL_PENDING_MESSAGE *) lfirst(msg_item); msg->flush_pending = true; - ereport(LOG, + ereport(DEBUG5, (errmsg("pool_pending_message_set_flush_request: msg: %s", pool_pending_message_type_to_string(msg->type)))); } -- 2.39.5