提交 baaad233 编写于 作者: M Magnus Hagander

"debug" level was supposed to be hidden, since it's just an alias for debug2.

上级 7b39f488
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.459 2008/07/01 06:08:31 mha Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.460 2008/07/01 06:36:11 mha Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
...@@ -178,7 +178,7 @@ static char *config_enum_get_options(struct config_enum *record, ...@@ -178,7 +178,7 @@ static char *config_enum_get_options(struct config_enum *record,
* they sort slightly different (see "log" level) * they sort slightly different (see "log" level)
*/ */
static const struct config_enum_entry client_message_level_options[] = { static const struct config_enum_entry client_message_level_options[] = {
{"debug", DEBUG2, false}, {"debug", DEBUG2, true},
{"debug5", DEBUG5, false}, {"debug5", DEBUG5, false},
{"debug4", DEBUG4, false}, {"debug4", DEBUG4, false},
{"debug3", DEBUG3, false}, {"debug3", DEBUG3, false},
...@@ -195,7 +195,7 @@ static const struct config_enum_entry client_message_level_options[] = { ...@@ -195,7 +195,7 @@ static const struct config_enum_entry client_message_level_options[] = {
}; };
static const struct config_enum_entry server_message_level_options[] = { static const struct config_enum_entry server_message_level_options[] = {
{"debug", DEBUG2, false}, {"debug", DEBUG2, true},
{"debug5", DEBUG5, false}, {"debug5", DEBUG5, false},
{"debug4", DEBUG4, false}, {"debug4", DEBUG4, false},
{"debug3", DEBUG3, false}, {"debug3", DEBUG3, false},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册