From 689d15e95e3509554fbc1afd231b41f4a1fee669 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 30 Jan 2019 23:26:10 +0100 Subject: [PATCH] Log PostgreSQL version number on startup Logging the PostgreSQL version on startup is useful for two reasons: There is a clear marker in the log file that a new postmaster is beginning, and it's useful for tracking the server version across startup while upgrading. Author: Christoph Berg Discussion: https://www.postgresql.org/message-id/flat/20181121144611.GJ15795@msg.credativ.de/ --- src/backend/postmaster/postmaster.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 119c01d745..40a0222220 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -1052,6 +1052,10 @@ PostmasterMain(int argc, char *argv[]) whereToSendOutput = DestNone; + /* Report server startup in log */ + ereport(LOG, + (errmsg("starting %s", PG_VERSION_STR))); + /* * Establish input sockets. * -- 2.40.0