mirror of
https://github.com/postgres/postgres.git
synced 2025-04-25 21:42:33 +03:00
Improve logical decoding log messages
suggestions from Robert Haas
This commit is contained in:
parent
473f162ce1
commit
a15d387c22
@ -1268,7 +1268,7 @@ SnapBuildFindSnapshot(SnapBuild *builder, XLogRecPtr lsn, xl_running_xacts *runn
|
||||
ereport(LOG,
|
||||
(errmsg("logical decoding found consistent point at %X/%X",
|
||||
(uint32) (lsn >> 32), (uint32) lsn),
|
||||
errdetail("running xacts with xcnt == 0")));
|
||||
errdetail("There are no running transactions.")));
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -1799,7 +1799,7 @@ SnapBuildRestore(SnapBuild *builder, XLogRecPtr lsn)
|
||||
ereport(LOG,
|
||||
(errmsg("logical decoding found consistent point at %X/%X",
|
||||
(uint32) (lsn >> 32), (uint32) lsn),
|
||||
errdetail("found initial snapshot in snapbuild file")));
|
||||
errdetail("Logical decoding will begin using saved snapshot.")));
|
||||
return true;
|
||||
|
||||
snapshot_not_interesting:
|
||||
|
Loading…
x
Reference in New Issue
Block a user