diff --git a/tests/quantization/test_register_quantization_config.py b/tests/quantization/test_register_quantization_config.py index a09856c7855..ac7746935af 100644 --- a/tests/quantization/test_register_quantization_config.py +++ b/tests/quantization/test_register_quantization_config.py @@ -108,14 +108,14 @@ def test_register_quantization_config(caplog_vllm): assert get_quantization_config("custom_quant") == CustomQuantConfig # The quantization method `custom_quant` is already exists, - # should raise a warning when re-registering it. - with caplog_vllm.at_level(logging.WARNING): + # should raise a debug message when re-registering it. + with caplog_vllm.at_level(logging.DEBUG, logger="vllm"): register_quantization_config("custom_quant")(CustomQuantConfig) assert any( "The quantization method 'custom_quant' already exists" in message for message in caplog_vllm.messages - ), "Expected a warning when re-registering custom_quant" + ), "Expected a debug message when re-registering custom_quant" @pytest.mark.parametrize( diff --git a/vllm/model_executor/layers/quantization/__init__.py b/vllm/model_executor/layers/quantization/__init__.py index 11489feb9d7..5fb3c930f85 100644 --- a/vllm/model_executor/layers/quantization/__init__.py +++ b/vllm/model_executor/layers/quantization/__init__.py @@ -84,7 +84,7 @@ def register_quantization_config(quantization: str): def _wrapper(quant_config_cls): if quantization in QUANTIZATION_METHODS: - logger.warning( + logger.debug( "The quantization method '%s' already exists and will be " "overwritten by the quantization config %s.", quantization, diff --git a/vllm/model_executor/models/registry.py b/vllm/model_executor/models/registry.py index 559328d4a88..8c358ba9247 100644 --- a/vllm/model_executor/models/registry.py +++ b/vllm/model_executor/models/registry.py @@ -980,7 +980,7 @@ class _ModelRegistry: raise TypeError(msg) if model_arch in self.models: - logger.warning( + logger.debug( "Model architecture %s is already registered, and will be " "overwritten by the new model class %s.", model_arch,