diff --git a/engines/python/setup/djl_python/neuron_utils/model_loader.py b/engines/python/setup/djl_python/neuron_utils/model_loader.py index 359d72908..eab65d71d 100644 --- a/engines/python/setup/djl_python/neuron_utils/model_loader.py +++ b/engines/python/setup/djl_python/neuron_utils/model_loader.py @@ -28,6 +28,11 @@ from djl_python.neuron_utils.utils import NeuronXModelAdapter, get_neuronxcc_version from huggingface_hub import hf_hub_download +# Temporary Fix: These loggers are disabled during vLLM import. +# Remove when fixed in vLLM +logging.getLogger("NEURON_CC_WRAPPER").disabled = False +logging.getLogger("NEURON_CACHE").disabled = False + class ModelLoader(ABC):