Skip to content

Commit 288c122

Browse files
committed
[Issue #270] issue VERBOSE message instead of WARNING if backup directory name does not match backup ID
1 parent 3c00972 commit 288c122

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/catalog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ catalog_get_backup_list(const char *instance_name, time_t requested_backup_id)
472472
}
473473
else if (strcmp(base36enc(backup->start_time), data_ent->d_name) != 0)
474474
{
475-
elog(WARNING, "backup ID in control file \"%s\" doesn't match name of the backup folder \"%s\"",
475+
elog(VERBOSE, "backup ID in control file \"%s\" doesn't match name of the backup folder \"%s\"",
476476
base36enc(backup->start_time), backup_conf_path);
477477
}
478478

0 commit comments

Comments
 (0)