1010 * Written by Peter Eisentraut <peter_e@gmx.net>.
1111 *
1212 * IDENTIFICATION
13- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.459 2008/07/01 06:08:31 mha Exp $
13+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.460 2008/07/01 06:36:11 mha Exp $
1414 *
1515 *--------------------------------------------------------------------
1616 */
@@ -178,7 +178,7 @@ static char *config_enum_get_options(struct config_enum *record,
178178 * they sort slightly different (see "log" level)
179179 */
180180static const struct config_enum_entry client_message_level_options []= {
181- {"debug" ,DEBUG2 ,false },
181+ {"debug" ,DEBUG2 ,true },
182182{"debug5" ,DEBUG5 , false},
183183{"debug4" ,DEBUG4 , false},
184184{"debug3" ,DEBUG3 , false},
@@ -195,7 +195,7 @@ static const struct config_enum_entry client_message_level_options[] = {
195195};
196196
197197static const struct config_enum_entry server_message_level_options []= {
198- {"debug" ,DEBUG2 ,false },
198+ {"debug" ,DEBUG2 ,true },
199199{"debug5" ,DEBUG5 , false},
200200{"debug4" ,DEBUG4 , false},
201201{"debug3" ,DEBUG3 , false},