Skip to content

Commit ba7ba35

Browse files
authored
[Chore] debloat some initial logs (#19438)
Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
1 parent 015fab8 commit ba7ba35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vllm/config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -546,10 +546,10 @@ def __post_init__(self) -> None:
546546
self.code_revision, self.config_format)
547547

548548
if hf_overrides_kw:
549-
logger.info("Overriding HF config with %s", hf_overrides_kw)
549+
logger.debug("Overriding HF config with %s", hf_overrides_kw)
550550
hf_config.update(hf_overrides_kw)
551551
if hf_overrides_fn:
552-
logger.info("Overriding HF config with %s", hf_overrides_fn)
552+
logger.debug("Overriding HF config with %s", hf_overrides_fn)
553553
hf_config = hf_overrides_fn(hf_config)
554554

555555
self.hf_config = hf_config
@@ -1947,8 +1947,8 @@ def __post_init__(self) -> None:
19471947
if get_current_placement_group():
19481948
backend = "ray"
19491949
self.distributed_executor_backend = backend
1950-
logger.info("Defaulting to use %s for distributed inference",
1951-
backend)
1950+
logger.debug("Defaulting to use %s for distributed inference",
1951+
backend)
19521952

19531953
if self.distributed_executor_backend is None and self.world_size == 1:
19541954
self.distributed_executor_backend = "uni"

0 commit comments

Comments
 (0)