diff --git a/vllm/compilation/backends.py b/vllm/compilation/backends.py index 317b0488c6436..b9f96c00284b9 100644 --- a/vllm/compilation/backends.py +++ b/vllm/compilation/backends.py @@ -625,7 +625,7 @@ def __call__(self, graph: fx.GraphModule, example_inputs) -> Callable: with open(graph_path, "w") as f: f.write(src) - logger.info("Computation graph saved to %s", graph_path) + logger.debug("Computation graph saved to %s", graph_path) self._called = True diff --git a/vllm/compilation/wrapper.py b/vllm/compilation/wrapper.py index dc1464a144130..58a8fa76f6ce2 100644 --- a/vllm/compilation/wrapper.py +++ b/vllm/compilation/wrapper.py @@ -100,8 +100,8 @@ def bytecode_hook(self, old_code: CodeType, new_code: CodeType): with open(decompiled_file, "w") as f: f.write(src) - logger.info("Dynamo transformed code saved to %s", - decompiled_file) + logger.debug("Dynamo transformed code saved to %s", + decompiled_file) except Exception: pass