fix: repeat tenant_id in debug message

This commit is contained in:
Christian Schwarz
2023-03-29 10:49:06 +02:00
parent 370b3637db
commit a6f9ebf178

View File

@@ -530,7 +530,7 @@ async fn collect_eviction_candidates(
continue;
}
let info = tl.get_local_layers_for_disk_usage_eviction();
debug!(timeline_id=%tl.timeline_id, "timeline resident layers count: {}", info.resident_layers.len());
debug!(tenant_id=%tl.tenant_id, timeline_id=%tl.timeline_id, "timeline resident layers count: {}", info.resident_layers.len());
tenant_candidates.extend(
info.resident_layers
.into_iter()