Unverified Commit ba7ba35c authored by Aaron Pham's avatar Aaron Pham Committed by GitHub
Browse files

[Chore] debloat some initial logs (#19438)


Signed-off-by: default avatarAaron Pham <contact@aarnphm.xyz>
parent 015fab8c
...@@ -546,10 +546,10 @@ class ModelConfig: ...@@ -546,10 +546,10 @@ class ModelConfig:
self.code_revision, self.config_format) self.code_revision, self.config_format)
if hf_overrides_kw: if hf_overrides_kw:
logger.info("Overriding HF config with %s", hf_overrides_kw) logger.debug("Overriding HF config with %s", hf_overrides_kw)
hf_config.update(hf_overrides_kw) hf_config.update(hf_overrides_kw)
if hf_overrides_fn: if hf_overrides_fn:
logger.info("Overriding HF config with %s", hf_overrides_fn) logger.debug("Overriding HF config with %s", hf_overrides_fn)
hf_config = hf_overrides_fn(hf_config) hf_config = hf_overrides_fn(hf_config)
self.hf_config = hf_config self.hf_config = hf_config
...@@ -1947,7 +1947,7 @@ class ParallelConfig: ...@@ -1947,7 +1947,7 @@ class ParallelConfig:
if get_current_placement_group(): if get_current_placement_group():
backend = "ray" backend = "ray"
self.distributed_executor_backend = backend self.distributed_executor_backend = backend
logger.info("Defaulting to use %s for distributed inference", logger.debug("Defaulting to use %s for distributed inference",
backend) backend)
if self.distributed_executor_backend is None and self.world_size == 1: if self.distributed_executor_backend is None and self.world_size == 1:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment