diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-02-07 16:44:48 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-02-07 16:44:48 +0000 |
| commit | 78d12161602d241c7e78e853303de91f6a237893 (patch) | |
| tree | 0d225e437b94c3dd941908ca9f0fa9a06c6ae8ed /src/backend/access/transam/xlog.c | |
| parent | 53d7d49011ef3a098d614cb4430d03617b7e90b4 (diff) | |
Remove the xlog-centric "database system is ready" message and replace it with
"database system is ready to accept connections", which is issued by the
postmaster when it really is ready to accept connections. Per proposal from
Markus Schiltknecht and subsequent discussion.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
| -rw-r--r-- | src/backend/access/transam/xlog.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 62fbab8d950..b1a5a57b2f4 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.261 2007/02/01 19:10:25 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.262 2007/02/07 16:44:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -5168,9 +5168,6 @@ StartupXLOG(void) /* Reload shared-memory state for prepared transactions */ RecoverPreparedTransactions(); - ereport(LOG, - (errmsg("database system is ready"))); - /* Shut down readFile facility, free space */ if (readFile >= 0) { |
