Skip to content

Commit 7395d9a

Browse files
committed
Update display of debug levels.
1 parent 5d72657 commit 7395d9a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.125 1999/10/08 05:20:48 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.126 1999/10/08 05:36:58 momjian Exp $
1414
*
1515
* NOTES
1616
*
@@ -686,7 +686,7 @@ usage(const char *progname)
686686
fprintf(stderr, "\t-S \t\tsilent mode (disassociate from tty)\n");
687687
fprintf(stderr, "\t-a system\tuse this authentication system\n");
688688
fprintf(stderr, "\t-b backend\tuse a specific backend server executable\n");
689-
fprintf(stderr, "\t-d [1|2|3]\tset debugging level\n");
689+
fprintf(stderr, "\t-d [1-5]\tset debugging level\n");
690690
fprintf(stderr, "\t-i \t\tlisten on TCP/IP sockets as well as Unix domain socket\n");
691691
#ifdef USE_SSL
692692
fprintf(stderr," \t-l \t\tfor TCP/IP sockets, listen only on SSL connections\n");

src/backend/tcop/postgres.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.133 1999/10/08 05:27:14 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.134 1999/10/08 05:36:58 momjian Exp $
1111
*
1212
* NOTES
1313
* this is the "main" module of the postgres backend and
@@ -858,7 +858,7 @@ usage(char *progname)
858858
fprintf(stderr, "\t-S kbytes\tset amount of memory for sorts (in kbytes)\n");
859859
fprintf(stderr, "\t-T options\tspecify pg_options\n");
860860
fprintf(stderr, "\t-W sec\t\twait N seconds to allow attach from a debugger\n");
861-
fprintf(stderr, "\t-d [1|2|3]\tset debug level\n");
861+
fprintf(stderr, "\t-d [1-5]\tset debug level\n");
862862
fprintf(stderr, "\t-e \t\tturn on European date format\n");
863863
fprintf(stderr, "\t-f [s|i|n|m|h]\tforbid use of some plan types\n");
864864
fprintf(stderr, "\t-i \t\tdon't execute queries\n");
@@ -1500,7 +1500,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
15001500
if (!IsUnderPostmaster)
15011501
{
15021502
puts("\nPOSTGRES backend interactive interface ");
1503-
puts("$Revision: 1.133 $ $Date: 1999/10/08 05:27:14 $\n");
1503+
puts("$Revision: 1.134 $ $Date: 1999/10/08 05:36:58 $\n");
15041504
}
15051505

15061506
/*

0 commit comments

Comments
 (0)