1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-11 11:41:33 +02:00

[Issue #270] issue VERBOSE message instead of WARNING if backup directory name does not match backup ID

This commit is contained in:
Grigory Smolkin 2020-10-30 03:01:11 +03:00
parent 3c00972bd4
commit 288c1223e4

View File

@ -472,7 +472,7 @@ catalog_get_backup_list(const char *instance_name, time_t requested_backup_id)
}
else if (strcmp(base36enc(backup->start_time), data_ent->d_name) != 0)
{
elog(WARNING, "backup ID in control file \"%s\" doesn't match name of the backup folder \"%s\"",
elog(VERBOSE, "backup ID in control file \"%s\" doesn't match name of the backup folder \"%s\"",
base36enc(backup->start_time), backup_conf_path);
}