pageserver: downgrade ephemeral layer roll wait message (#10883)

We already log a message for this during the L0 flush, so the additional
message is mostly noise.
This commit is contained in:
Erik Grinaker
2025-02-20 13:08:30 +01:00
committed by GitHub
parent 1d9346f8b7
commit f7edcf12e3

View File

@@ -6614,7 +6614,7 @@ impl TimelineWriter<'_> {
if let Some(wait_threshold) = wait_threshold {
if l0_count >= wait_threshold {
info!("layer roll waiting for flush due to compaction backpressure at {l0_count} L0 layers");
debug!("layer roll waiting for flush due to compaction backpressure at {l0_count} L0 layers");
self.tl.wait_flush_completion(flush_id).await?;
}
}