We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent65bb8b5 commitcd9a119Copy full SHA for cd9a119
data.c
@@ -284,7 +284,7 @@ backup_data_file(const char *from_root, const char *to_root,
284
for(i=0;i<BLCKSZ&&page.data[i]==0;i++);
285
if (i==BLCKSZ)
286
{
287
-elog(WARNING,"File: %s blknum %u, empty page",file->path,blknum);
+elog(LOG,"File: %s blknum %u, empty page",file->path,blknum);
288
gotoend_checks2;
289
}
290
@@ -318,7 +318,7 @@ backup_data_file(const char *from_root, const char *to_root,
318
pg_checksum_page(page.data,file->segno*RELSEG_SIZE+blknum)!= ((PageHeader)page.data)->pd_checksum)
319
320
if (try_checksum)
321
-elog(WARNING,"File: %s blknum %u have wrong checksum, try again",file->path,blknum);
+elog(LOG,"File: %s blknum %u have wrong checksum, try again",file->path,blknum);
322
else
323
elog(ERROR,"File: %s blknum %u have wrong checksum.",file->path,blknum);
324