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

fix INFO message

This commit is contained in:
Anastasia
2017-05-05 11:31:00 +03:00
parent 0e11c87396
commit a6be0c35f4

View File

@@ -207,9 +207,9 @@ do_retention_purge(void)
parray_free(backup_list);
if (backup_deleted)
elog(INFO, "purging finished");
elog(INFO, "Purging finished");
else
elog(INFO, "no one backup was deleted by retention policy");
elog(INFO, "Nothing to delete by retention policy");
return 0;
}