Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 31b9da4

Browse files
committed
change elevel to VERBOSE for message about file truncate in restore_data_file()
1 parent cf3c69e commit 31b9da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ restore_data_file(const char *to_path, pgFile *file, bool allow_truncate,
798798
if (ftruncate(fileno(out), write_pos) != 0)
799799
elog(ERROR, "cannot truncate \"%s\": %s",
800800
file->path, strerror(errno));
801-
elog(INFO, "Delta truncate file %s to block %u",
801+
elog(VERBOSE, "Delta truncate file %s to block %u",
802802
file->path, truncate_from);
803803
}
804804

0 commit comments

Comments
 (0)