1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Message improvements

This commit is contained in:
Peter Eisentraut
2014-11-11 20:00:58 -05:00
parent f1abd78be7
commit 8339f33d68
6 changed files with 24 additions and 21 deletions

View File

@@ -797,8 +797,7 @@ CheckPointReplicationSlots(void)
{
int i;
ereport(DEBUG1,
(errmsg("performing replication slot checkpoint")));
elog(DEBUG1, "performing replication slot checkpoint");
/*
* Prevent any slot from being created/dropped while we're active. As we
@@ -834,8 +833,7 @@ StartupReplicationSlots(void)
DIR *replication_dir;
struct dirent *replication_de;
ereport(DEBUG1,
(errmsg("starting up replication slots")));
elog(DEBUG1, "starting up replication slots");
/* restore all slots by iterating over all on-disk entries */
replication_dir = AllocateDir("pg_replslot");