diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2000-03-01 02:39:46 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2000-03-01 02:39:46 +0000 |
commit | ea8cadbf94480f7d3bbce9d4dbd2f361a8bcbe5d (patch) | |
tree | f7ac3b238dbc649e658e51019beb5daebd58f42c /src/backend/tcop/postgres.c | |
parent | b1e4b56144151ef9fd309762c7c1d09167ac9aff (diff) | |
download | postgresql-ea8cadbf94480f7d3bbce9d4dbd2f361a8bcbe5d.tar.gz postgresql-ea8cadbf94480f7d3bbce9d4dbd2f361a8bcbe5d.zip |
Remove using puts() to print messages. Instead use TPRINTF.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 0ad38686070..7d3aed5a834 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.146 2000/02/22 09:55:18 inoue Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.147 2000/03/01 02:39:46 ishii Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1470,10 +1470,10 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) #ifdef MULTIBYTE /* set default client encoding */ if (Verbose) - puts("\treset_client_encoding().."); + TPRINTF(TRACE_VERBOSE, "reset_client_encoding().."); reset_client_encoding(); if (Verbose) - puts("\treset_client_encoding() done."); + TPRINTF(TRACE_VERBOSE, "reset_client_encoding() done."); #endif on_shmem_exit(remove_all_temp_relations, NULL); @@ -1503,7 +1503,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.146 $ $Date: 2000/02/22 09:55:18 $\n"); + puts("$Revision: 1.147 $ $Date: 2000/03/01 02:39:46 $\n"); } /* |