fix: 关闭Spring Boot banner和启动日志,添加run.bat启动脚本
- application.yml: banner-mode=off, 所有日志级别提升到WARN - 启动时不再显示Spring Boot ASCII art和INFO日志 - 控制台只显示Claude Code自己的输出 - run.bat: 预配置JDK25环境变量的一键启动脚本 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -20,15 +20,17 @@ spring:
|
||||
# 不启动 Web 服务器(纯 CLI 模式)
|
||||
main:
|
||||
web-application-type: none
|
||||
banner-mode: off
|
||||
|
||||
# 虚拟线程
|
||||
threads:
|
||||
virtual:
|
||||
enabled: true
|
||||
|
||||
# 日志
|
||||
# 日志:CLI 模式下只显示 WARN 及以上,保持控制台干净
|
||||
logging:
|
||||
level:
|
||||
com.claudecode: INFO
|
||||
org.springframework.ai: WARN
|
||||
org.springframework.boot.autoconfigure: WARN
|
||||
root: WARN
|
||||
com.claudecode: WARN
|
||||
org.springframework: WARN
|
||||
org.jline: WARN
|
||||
|
||||
Reference in New Issue
Block a user