mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-02-10 14:37:03 +02:00
Fix error message during files merging
This commit is contained in:
parent
2e20bd28fe
commit
04d396dc7c
@ -676,7 +676,8 @@ merge_files(void *arg)
|
||||
elog(VERBOSE, "Merged file \"%s\": " INT64_FORMAT " bytes",
|
||||
file->path, file->write_size);
|
||||
else
|
||||
elog(ERROR, "Merge of file \"%s\" failed. Invalid size: %i", BYTES_INVALID);
|
||||
elog(ERROR, "Merge of file \"%s\" failed. Invalid size: " INT64_FORMAT " bytes",
|
||||
file->path, file->write_size);
|
||||
|
||||
/* Restore relative path */
|
||||
file->path = prev_file_path;
|
||||
|
Loading…
x
Reference in New Issue
Block a user