Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
2025-12-05 10:44:04 +08:00
3 changed files with 2 additions and 34 deletions

View File

@@ -37,18 +37,6 @@ spring:
database: 0 # 数据库索引
# password: 123456 # 密码,建议生产环境开启
logging:
file:
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
level:
com.jeelowcode.core.framework.mapper.LogApiMapper: ERROR #日志入库不需要打印
com.jeelowcode.core.framework.mapper.LogApiErrorMapper: ERROR #日志入库不需要打印
com.jeelowcode.service.system.mapper.OperateLogMapper: error #日志入库不需要打印
org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR
org.mybatis.spring.mapper.ClassPathMapperScanner: error
de.codecentric: error
--- #################### 芋道相关配置 ####################
# 芋道配置项,设置当前项目所有自定义的配置

View File

@@ -37,17 +37,6 @@ spring:
# database: 10 # 数据库索引
# password: 123456 # 密码,建议生产环境开启
logging:
file:
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
level:
com.jeelowcode.core.framework.mapper.LogApiMapper: ERROR #日志入库不需要打印
com.jeelowcode.core.framework.mapper.LogApiErrorMapper: ERROR #日志入库不需要打印
com.jeelowcode.service.system.mapper.OperateLogMapper: error #日志入库不需要打印
org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR
org.mybatis.spring.mapper.ClassPathMapperScanner: error
de.codecentric: error
--- #################### 芋道相关配置 ####################
# 芋道配置项,设置当前项目所有自定义的配置

View File

@@ -67,21 +67,12 @@
</root>
</springProfile>
<!-- 其它环境 -->
<springProfile name="dev,test,stage,default">
<springProfile name="dev,test,stage,default,prod,office">
<root level="INFO">
<appender-ref ref="STDOUT"/>
<appender-ref ref="ASYNC"/>
<appender-ref ref="GRPC"/>
</root>
</springProfile>
<!-- 单独对设备网环境、办公网环境进行配置 -->
<springProfile name="prod,office">
<root level="WARN">
<appender-ref ref="ASYNC"/>
<appender-ref ref="GRPC"/>
</root>
<!-- 特定业务包使用INFO级别 -->
<logger name="com.jeelowcode" level="INFO"/>
</springProfile>
</configuration>