reduce LOG noise

This commit is contained in:
Heikki Linnakangas
2025-05-09 18:27:36 +03:00
parent 6692321026
commit 0c25ea9e31
2 changed files with 4 additions and 2 deletions

View File

@@ -133,6 +133,8 @@ struct BlockEntry {
lw_lsn: Lsn,
cache_block: Option<CacheBlock>,
io_in_progress: AtomicBool,
// 'referenced' bit for the clock algorithm
referenced: AtomicBool,
}

View File

@@ -391,7 +391,7 @@ communicator_new_prefetch_register_bufferv(NRelFileInfo rinfo, ForkNumber forkNu
};
struct NeonIOResult result;
elog(LOG, "prefetch called for rel %u/%u/%u.%u block %u (%u blocks)",
elog(DEBUG5, "prefetch called for rel %u/%u/%u.%u block %u (%u blocks)",
RelFileInfoFmt(rinfo), forkNum, blockno, nblocks);
if (num_inflight_requests >= MAX_INFLIGHT_ASYNC_REQUESTS)
@@ -553,7 +553,7 @@ communicator_new_read_at_lsnv(NRelFileInfo rinfo, ForkNumber forkNum, BlockNumbe
}
};
elog(LOG, "getpagev called for rel %u/%u/%u.%u block %u (%u blocks)",
elog(DEBUG5, "getpagev called for rel %u/%u/%u.%u block %u (%u blocks)",
RelFileInfoFmt(rinfo), forkNum, blockno, nblocks);
/* Fill in the destination buffers in the request */