1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-10-31 00:17:52 +02:00

add INFO message about backup/validate completion

This commit is contained in:
Anastasia
2017-04-28 17:39:19 +03:00
parent 95df9fa6bb
commit 0acc91112c

View File

@@ -250,7 +250,8 @@ do_restore_or_validate(time_t target_backup_id,
parray_walk(backups, pgBackupFree);
parray_free(backups);
elog(LOG, "%s completed.", action);
elog(INFO, "%s of backup %s completed.",
action, base36enc(dest_backup->start_time));
return 0;
}