Before the compile time default was 'none' but the default value of
sample pgpool.conf was 'if_over_threshold'. Since 'if_over_threshold'
is more useful for most users, change the compile time default to
'if_over_threshold' as well.
Discussion: https://www.pgpool.net/pipermail/pgpool-hackers/2021-October/004035.html
<!--
<entry>Never log the standby delay</entry>
-->
- <entry>スタンバイの遅延はログ出力されない (デフォルト)</entry>
+ <entry>スタンバイの遅延はログ出力されない</entry>
</row>
<row>
<!--
<entry>Only log the standby delay, when it exceeds <xref linkend="guc-delay-threshold"> value</entry>
-->
- <entry><xref linkend="guc-delay-threshold">の値を超えた時だけ、スタンバイの遅延がログ出力される</entry>
+ <entry><xref linkend="guc-delay-threshold">の値を超えた時だけ、スタンバイの遅延がログ出力される(デフォルト)</entry>
</row>
</tbody>
</tgroup>
<tbody>
<row>
<entry><literal>'none'</literal></entry>
- <entry>Never log the standby delay (the default)</entry>
+ <entry>Never log the standby delay</entry>
</row>
<row>
<row>
<entry><literal>'if_over_threshold'</literal></entry>
- <entry>Only log the standby delay, when it exceeds <xref linkend="guc-delay-threshold"> value</entry>
+ <entry>Only log the standby delay, when it exceeds <xref linkend="guc-delay-threshold"> value (the default)</entry>
</row>
</tbody>
</tgroup>
CONFIG_VAR_TYPE_ENUM, false, 0
},
(int *) &g_pool_config.log_standby_delay,
- LSD_NONE,
+ LSD_OVER_THRESHOLD,
log_standby_delay_options,
NULL, NULL, NULL, NULL
},