1
0
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:
Arthur Zakirov 2019-06-19 17:37:35 +03:00
parent 2e20bd28fe
commit 04d396dc7c

View File

@ -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;