From 337d76f094318eee05e421998ddd989825560adb Mon Sep 17 00:00:00 2001 From: gaoziyuan <88373061+gzy19990617@users.noreply.github.com> Date: Tue, 8 Jul 2025 19:29:23 +0800 Subject: [PATCH] [sync fix] (#2759) * add rl qwen model support * fix * fix * add_commit_config * fix --- fastdeploy/engine/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastdeploy/engine/config.py b/fastdeploy/engine/config.py index e39e292f2..ec7b68707 100644 --- a/fastdeploy/engine/config.py +++ b/fastdeploy/engine/config.py @@ -511,9 +511,9 @@ class CommitConfig: elif line.startswith("CXX compiler version:"): self.compiler_version = line.split(":")[1].strip() except FileNotFoundError: - logger.info(f"Warning: Version file not found at {file_path}") + llm_logger.info(f"Warning: Version file not found at {file_path}") except Exception as e: - logger.info(f"Warning: Could not read version file - {str(e)}") + llm_logger.info(f"Warning: Could not read version file - {str(e)}") def print(self): """