diff --git a/vllm/lora/punica_wrapper/punica_selector.py b/vllm/lora/punica_wrapper/punica_selector.py index 85494e4cb160b..9f1606e672dea 100644 --- a/vllm/lora/punica_wrapper/punica_selector.py +++ b/vllm/lora/punica_wrapper/punica_selector.py @@ -15,7 +15,7 @@ def get_punica_wrapper(*args, **kwargs) -> PunicaWrapperBase: elif current_platform.is_cpu(): # Lazy import to avoid ImportError from vllm.lora.punica_wrapper.punica_cpu import PunicaWrapperCPU - print_info_once("Using PunicaWrapperCPU.") + logger.info_once("Using PunicaWrapperCPU.") return PunicaWrapperCPU(*args, **kwargs) elif current_platform.is_hpu(): # Lazy import to avoid ImportError