From 14e46899b45c98e02ae3eb5a7bc2750edcda8df5 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Fri, 11 Mar 2022 10:38:08 +0900 Subject: [PATCH] Downgrade log level of ParameterStatus message. In commit 4bcba5258130c3cd9f855157a4359aad2fa7acfc the log level when ParameterStatus message arrives from backend was changed from DEBUG5 to LOG. There are multiple complains about the change because chances of the event is more frequent than I thought. So revert back the log level to DEBUG5. Discussion: https://www.pgpool.net/pipermail/pgpool-general/2022-March/008101.html --- src/protocol/pool_process_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/pool_process_query.c b/src/protocol/pool_process_query.c index 7a7769131..4ff06eb69 100644 --- a/src/protocol/pool_process_query.c +++ b/src/protocol/pool_process_query.c @@ -3365,7 +3365,7 @@ void read_kind_from_backend(POOL_CONNECTION *frontend, POOL_CONNECTION_POOL *bac if (p) { value = p + strlen(p) + 1; - ereport(LOG, + ereport(DEBUG5, (errmsg("ParameterStatus message from backend: %d", i), errdetail("parameter name: \"%s\" value: \"%s\"", p, value))); -- 2.39.5