]> granicus.if.org Git - postgresql/commitdiff
Remove special-case treatment of LOG severity level in standalone mode.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 14 Jun 2013 03:15:15 +0000 (23:15 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 14 Jun 2013 03:15:15 +0000 (23:15 -0400)
elog.c has historically treated LOG messages as low-priority during
bootstrap and standalone operation.  This has led to confusion and even
masked a bug, because the normal expectation of code authors is that
elog(LOG) will put something into the postmaster log, and that wasn't
happening during initdb.  So get rid of the special-case rule and make
the priority order the same as it is in normal operation.  To keep from
cluttering initdb's output and the behavior of a standalone backend,
tweak the severity level of three messages routinely issued by xlog.c
during startup and shutdown so that they won't appear in these cases.
Per my proposal back in December.

src/backend/access/transam/xlog.c
src/backend/utils/error/elog.c

index 7210ca5fddba177fb1c6949761e938165892bb28..654c9c18d8ba0168c44c81e428b5c26731921a8d 100644 (file)
@@ -4883,9 +4883,12 @@ StartupXLOG(void)
                                (errmsg("control file contains invalid data")));
 
        if (ControlFile->state == DB_SHUTDOWNED)
-               ereport(LOG,
+       {
+               /* This is the expected case, so don't be chatty in standalone mode */
+               ereport(IsPostmasterEnvironment ? LOG : NOTICE,
                                (errmsg("database system was shut down at %s",
                                                str_time(ControlFile->time))));
+       }
        else if (ControlFile->state == DB_SHUTDOWNED_IN_RECOVERY)
                ereport(LOG,
                                (errmsg("database system was shut down in recovery at %s",
@@ -6590,7 +6593,8 @@ GetNextXidAndEpoch(TransactionId *xid, uint32 *epoch)
 void
 ShutdownXLOG(int code, Datum arg)
 {
-       ereport(LOG,
+       /* Don't be chatty in standalone mode */
+       ereport(IsPostmasterEnvironment ? LOG : NOTICE,
                        (errmsg("shutting down")));
 
        if (RecoveryInProgress())
@@ -6612,7 +6616,8 @@ ShutdownXLOG(int code, Datum arg)
        ShutdownSUBTRANS();
        ShutdownMultiXact();
 
-       ereport(LOG,
+       /* Don't be chatty in standalone mode */
+       ereport(IsPostmasterEnvironment ? LOG : NOTICE,
                        (errmsg("database system is shut down")));
 }
 
index e9eb3d5be8cc8fbb4fc3ba4dc58f1b27e1057e45..7f03f419dead8f7f325a8e24a345d23fb1667192 100644 (file)
@@ -285,11 +285,7 @@ errstart(int elevel, const char *filename, int lineno,
         */
 
        /* Determine whether message is enabled for server log output */
-       if (IsPostmasterEnvironment)
-               output_to_server = is_log_level_output(elevel, log_min_messages);
-       else
-               /* In bootstrap/standalone case, do not sort LOG out-of-order */
-               output_to_server = (elevel >= log_min_messages);
+       output_to_server = is_log_level_output(elevel, log_min_messages);
 
        /* Determine whether message is enabled for client output */
        if (whereToSendOutput == DestRemote && elevel != COMMERROR)