From 7e1665b0899778ceeac0e4ab81e157709cf0b57e Mon Sep 17 00:00:00 2001 From: Michael Goin Date: Fri, 4 Jul 2025 11:35:08 +0900 Subject: [PATCH] [Misc] Change warn_for_unimplemented_methods to debug (#20455) --- vllm/utils/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vllm/utils/__init__.py b/vllm/utils/__init__.py index ccfbf56927bdc..9550b056fbba9 100644 --- a/vllm/utils/__init__.py +++ b/vllm/utils/__init__.py @@ -2799,7 +2799,7 @@ def warn_for_unimplemented_methods(cls: type[T]) -> type[T]: if unimplemented_methods: method_names = ','.join(unimplemented_methods) msg = (f"Methods {method_names} not implemented in {self}") - logger.warning(msg) + logger.debug(msg) @wraps(original_init) def wrapped_init(self, *args, **kwargs) -> None: @@ -3005,4 +3005,4 @@ def has_deep_ep() -> bool: def has_deep_gemm() -> bool: """Whether the optional `deep_gemm` package is available.""" - return _has_module("deep_gemm") \ No newline at end of file + return _has_module("deep_gemm")