1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-24 11:46:31 +02:00

print stop_lsn with elevel LOG

This commit is contained in:
Grigory Smolkin 2019-08-31 15:48:52 +03:00
parent 0f0e961fea
commit 2aea9cc760

View File

@ -1808,6 +1808,9 @@ pg_stop_backup(pgBackup *backup, PGconn *pg_startbackup_conn,
(uint32) (stop_backup_lsn >> 32), (uint32) (stop_backup_lsn));
}
elog(LOG, "current.stop_lsn: %X/%X",
(uint32) (stop_backup_lsn >> 32), (uint32) (stop_backup_lsn));
/* Write backup_label and tablespace_map */
if (!exclusive_backup)
{