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

change elevel to VERBOSE for message about file truncate in restore_data_file()

This commit is contained in:
Grigory Smolkin 2018-10-18 16:52:56 +03:00
parent cf3c69e906
commit 31b9da4fb7

View File

@ -798,7 +798,7 @@ restore_data_file(const char *to_path, pgFile *file, bool allow_truncate,
if (ftruncate(fileno(out), write_pos) != 0)
elog(ERROR, "cannot truncate \"%s\": %s",
file->path, strerror(errno));
elog(INFO, "Delta truncate file %s to block %u",
elog(VERBOSE, "Delta truncate file %s to block %u",
file->path, truncate_from);
}