From: Alvaro Herrera Date: Wed, 20 Feb 2008 14:01:45 +0000 (+0000) Subject: Change error message to be able to differentiate the two cases. Per suggestion X-Git-Tag: REL8_4_BETA1~1967 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=bccc8e36084f2ed69d172e064c30039e464fb07f;p=postgresql.git Change error message to be able to differentiate the two cases. Per suggestion from Jaime Casanova. --- diff --git a/src/backend/postmaster/autovacuum.c b/src/backend/postmaster/autovacuum.c index 4a26855e08b..9175f65a523 100644 --- a/src/backend/postmaster/autovacuum.c +++ b/src/backend/postmaster/autovacuum.c @@ -55,7 +55,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.71 2008/01/14 13:39:25 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.72 2008/02/20 14:01:45 alvherre Exp $ * *------------------------------------------------------------------------- */ @@ -352,7 +352,7 @@ StartAutoVacLauncher(void) { case -1: ereport(LOG, - (errmsg("could not fork autovacuum process: %m"))); + (errmsg("could not fork autovacuum launcher process: %m"))); return 0; #ifndef EXEC_BACKEND @@ -1400,7 +1400,7 @@ StartAutoVacWorker(void) { case -1: ereport(LOG, - (errmsg("could not fork autovacuum process: %m"))); + (errmsg("could not fork autovacuum worker process: %m"))); return 0; #ifndef EXEC_BACKEND