1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-16 15:18:40 +02:00

[Issue #120] report the number of deleted backups

This commit is contained in:
Grigory Smolkin 2020-03-24 21:51:14 +03:00
parent 9864f5816e
commit 7054d42861

View File

@ -1066,7 +1066,8 @@ do_delete_status(InstanceConfig *instance_config, const char *status)
}
if (n_deleted > 0)
elog(INFO, "Successfully deleted all backups with status '%s' from instance '%s'",
elog(INFO, "Successfully deleted %i %s with status '%s' from instance '%s'",
n_deleted, n_deleted == 1 ? "backup" : "backups",
pretty_status, instance_config->name);
else
elog(WARNING, "Instance '%s' has no backups with status '%s'",