diff --git a/vllm_omni/model_executor/models/qwen3_omni/qwen3_omni.py b/vllm_omni/model_executor/models/qwen3_omni/qwen3_omni.py index 5a22ce024ab..ebe516e240b 100644 --- a/vllm_omni/model_executor/models/qwen3_omni/qwen3_omni.py +++ b/vllm_omni/model_executor/models/qwen3_omni/qwen3_omni.py @@ -680,7 +680,6 @@ def talker_preprocess_prefill(self, input_ids: torch.Tensor, input_embeds: torch update_dict: dict[str, dict] = {} voice_type = info_dict.get("speaker") - logger.info("talker_preprocess_prefill speaker: %s", voice_type) if voice_type is not None and isinstance(voice_type, (list, tuple)) and len(voice_type) > 0: voice_type = voice_type[0] if not isinstance(voice_type, str) or not voice_type.strip():