We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf6abf4e commit6859099Copy full SHA for 6859099
src/backend/postmaster/postmaster.c
@@ -11,7 +11,7 @@
11
*
12
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.206 2001/02/10 02:31:26 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.207 2001/02/11 23:12:28 tgl Exp $
15
16
* NOTES
17
@@ -1557,7 +1557,8 @@ reaper(SIGNAL_ARGS)
1557
abort();
1558
if (exitstatus!=0)
1559
{
1560
-fprintf(stderr,"Shutdown failed - abort\n");
+fprintf(stderr,"%s: Shutdown proc %d exited with status %d\n",
1561
+progname,pid,exitstatus);
1562
fflush(stderr);
1563
ExitPostmaster(1);
1564
}
@@ -1569,7 +1570,8 @@ reaper(SIGNAL_ARGS)
1569
1570
1571
1572
-fprintf(stderr,"Startup failed - abort\n");
1573
+fprintf(stderr,"%s: Startup proc %d exited with status %d - abort\n",
1574
1575
1576
1577