We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9864f58 commit 7054d42Copy full SHA for 7054d42
src/delete.c
@@ -1066,7 +1066,8 @@ do_delete_status(InstanceConfig *instance_config, const char *status)
1066
}
1067
1068
if (n_deleted > 0)
1069
- elog(INFO, "Successfully deleted all backups with status '%s' from instance '%s'",
+ elog(INFO, "Successfully deleted %i %s with status '%s' from instance '%s'",
1070
+ n_deleted, n_deleted == 1 ? "backup" : "backups",
1071
pretty_status, instance_config->name);
1072
else
1073
elog(WARNING, "Instance '%s' has no backups with status '%s'",
0 commit comments