From ce02df85927b1c3c8df7fc9e11f0a3fa9c58c256 Mon Sep 17 00:00:00 2001 From: Evrard-Nil <38186198+Evrard-Nil@users.noreply.github.com> Date: Wed, 4 Feb 2026 12:19:02 +0100 Subject: [PATCH] [diffusion] logging: downgrade default prompt log from info to debug (#17813) Co-authored-by: Mick --- .../multimodal_gen/runtime/pipelines_core/schedule_batch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/multimodal_gen/runtime/pipelines_core/schedule_batch.py b/python/sglang/multimodal_gen/runtime/pipelines_core/schedule_batch.py index fe038960b..7fabc52bf 100644 --- a/python/sglang/multimodal_gen/runtime/pipelines_core/schedule_batch.py +++ b/python/sglang/multimodal_gen/runtime/pipelines_core/schedule_batch.py @@ -309,7 +309,7 @@ class Req: output_file_path: {self.output_file_path()} """ # type: ignore[attr-defined] if not self.suppress_logs: - logger.info(debug_str) + logger.debug(debug_str) @dataclass