You've already forked pg_probackup
mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-07-15 07:04:14 +02:00
change elevel to VERBOSE for message about file truncate in restore_data_file()
This commit is contained in:
@ -798,7 +798,7 @@ restore_data_file(const char *to_path, pgFile *file, bool allow_truncate,
|
|||||||
if (ftruncate(fileno(out), write_pos) != 0)
|
if (ftruncate(fileno(out), write_pos) != 0)
|
||||||
elog(ERROR, "cannot truncate \"%s\": %s",
|
elog(ERROR, "cannot truncate \"%s\": %s",
|
||||||
file->path, strerror(errno));
|
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);
|
file->path, truncate_from);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user