Skip to content

Commit 2c92359

Browse files
committed
chore: move some logs into debug
Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
1 parent 1afa994 commit 2c92359

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

vllm/config.py

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

540540
if hf_overrides_kw:
541-
logger.info("Overriding HF config with %s", hf_overrides_kw)
541+
logger.debug("Overriding HF config with %s", hf_overrides_kw)
542542
hf_config.update(hf_overrides_kw)
543543
if hf_overrides_fn:
544-
logger.info("Overriding HF config with %s", hf_overrides_fn)
544+
logger.debug("Overriding HF config with %s", hf_overrides_fn)
545545
hf_config = hf_overrides_fn(hf_config)
546546

547547
self.hf_config = hf_config
@@ -1938,8 +1938,8 @@ def __post_init__(self) -> None:
19381938
if get_current_placement_group():
19391939
backend = "ray"
19401940
self.distributed_executor_backend = backend
1941-
logger.info("Defaulting to use %s for distributed inference",
1942-
backend)
1941+
logger.debug("Defaulting to use %s for distributed inference",
1942+
backend)
19431943

19441944
if self.distributed_executor_backend is None and self.world_size == 1:
19451945
self.distributed_executor_backend = "uni"

vllm/entrypoints/openai/cli_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def log_non_default_args(args: argparse.Namespace):
306306
for arg, default in vars(parser.parse_args([])).items():
307307
if default != getattr(args, arg):
308308
non_default_args[arg] = getattr(args, arg)
309-
logger.info("non-default args: %s", non_default_args)
309+
logger.debug("non-default args: %s", non_default_args)
310310

311311

312312
def create_parser_for_docs() -> FlexibleArgumentParser:

0 commit comments

Comments
 (0)