lower log level in PD Disaggregation (#7589)

### What this PR does / why we need it?
This log is printed too frequently and unecessary, Thus lowering its
level from INFO to DEBUG.

### Does this PR introduce _any_ user-facing change?
no

### How was this patch tested?

- vLLM version: v0.18.0
- vLLM main:
ed359c497a

---------

Signed-off-by: zouyida2052 <zouyida2002@gmail.com>
This commit is contained in:
zouyida2052
2026-03-24 18:03:17 +08:00
committed by GitHub
parent 0e3186f07c
commit 0210cc0b07
2 changed files with 2 additions and 2 deletions

View File

@@ -336,7 +336,7 @@ class KVPoolScheduler:
return False, None
delay_free_blocks = len(block_ids) > 0
if delay_free_blocks:
logger.info("Delaying free of %d blocks for request %s", len(block_ids), request.request_id)
logger.debug("Delaying free of %d blocks for request %s", len(block_ids), request.request_id)
return delay_free_blocks, None