diff options
author | Tom Lane | 2016-05-08 05:37:07 +0000 |
---|---|---|
committer | Tom Lane | 2016-05-08 05:37:07 +0000 |
commit | 9eb7a0ac6b24804dcc90e42e533aa1b7b585d8e2 (patch) | |
tree | cbfce28d403995ff1703d50ce0342cd908daae78 | |
parent | 4768cc4565df3527293271e4ef6e90d8db4e106d (diff) |
Fix poorly-worded log message.
Euler Taveira
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index f9644db0c35..b473f1914e8 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6179,7 +6179,7 @@ StartupXLOG(void) TABLESPACE_MAP, TABLESPACE_MAP_OLD))); else ereport(LOG, - (errmsg("ignoring \"%s\" file because no \"%s\" file exists", + (errmsg("ignoring file \"%s\" because no file \"%s\" exists", TABLESPACE_MAP, BACKUP_LABEL_FILE), errdetail("Could not rename file \"%s\" to \"%s\": %m.", TABLESPACE_MAP, TABLESPACE_MAP_OLD))); |