Index: src/backend/tcop/postgres.c =================================================================== RCS file: /cvsroot/pgsql-server/src/backend/tcop/postgres.c,v retrieving revision 1.294 diff -c -c -r1.294 postgres.c *** src/backend/tcop/postgres.c 25 Sep 2002 20:31:40 -0000 1.294 --- src/backend/tcop/postgres.c 26 Sep 2002 01:57:48 -0000 *************** *** 1258,1267 **** sprintf(debugstr, "debug%s", optarg); SetConfigOption("server_min_messages", debugstr, ctx, gucsource); pfree(debugstr); - /* * -d is not the same as setting ! * client_min_messages because it enables other * output options. */ if (atoi(optarg) >= 1) --- 1258,1266 ---- sprintf(debugstr, "debug%s", optarg); SetConfigOption("server_min_messages", debugstr, ctx, gucsource); pfree(debugstr); /* * -d is not the same as setting ! * server_min_messages because it enables other * output options. */ if (atoi(optarg) >= 1) *************** *** 1275,1288 **** if (atoi(optarg) >= 5) SetConfigOption("debug_print_rewritten", "true", ctx, gucsource); } - else - - /* - * -d 0 allows user to prevent postmaster debug - * from propagating to backend. - */ - SetConfigOption("server_min_messages", "notice", - ctx, gucsource); } break; --- 1274,1279 ----