From 743638bc038b013e37f1c58a589e707217cd265e Mon Sep 17 00:00:00 2001 From: Chang Su Date: Thu, 31 Jul 2025 12:56:52 -0700 Subject: [PATCH] misc: Remove debug print to logger.info (#8633) --- python/sglang/srt/model_executor/model_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/srt/model_executor/model_runner.py b/python/sglang/srt/model_executor/model_runner.py index caed3a6f4..41016c3d9 100644 --- a/python/sglang/srt/model_executor/model_runner.py +++ b/python/sglang/srt/model_executor/model_runner.py @@ -671,7 +671,7 @@ class ModelRunner: self.sliding_window_size = self.model.get_attention_sliding_window_size() elif self.model_config.attention_chunk_size is not None: self.sliding_window_size = self.model_config.attention_chunk_size - print( + logger.info( f"Setting sliding_window_size to be attention_chunk_size: {self.sliding_window_size}" )