mirror of
https://gitee.com/log4j/pig.git
synced 2024-12-22 20:54:25 +08:00
♻️ 优化 ApplicationLoggerInitializer 增加全局个UOL BeanPostProcessorChecker 警告过滤
This commit is contained in:
parent
dc985eb591
commit
239d61e626
@ -54,14 +54,14 @@
|
||||
</filter>
|
||||
</appender>
|
||||
|
||||
<logger name="org.activiti.engine.impl.db" level="DEBUG">
|
||||
<appender-ref ref="debug"/>
|
||||
</logger>
|
||||
|
||||
|
||||
<!--nacos 心跳 INFO 屏蔽-->
|
||||
<logger name="com.alibaba.nacos" level="OFF">
|
||||
<appender-ref ref="error"/>
|
||||
</logger>
|
||||
|
||||
|
||||
<!-- Level: FATAL 0 ERROR 3 WARN 4 INFO 6 DEBUG 7 -->
|
||||
<root level="INFO">
|
||||
<appender-ref ref="console"/>
|
||||
|
@ -37,6 +37,10 @@ public class ApplicationLoggerInitializer implements EnvironmentPostProcessor, O
|
||||
// spring boot admin 直接加载日志
|
||||
System.setProperty("logging.file.name", String.format("%s/%s/debug.log", logBase, appName));
|
||||
|
||||
// 避免各种依赖的地方组件造成 BeanPostProcessorChecker 警告
|
||||
System.setProperty("logging.level.org.springframework.context.support.PostProcessorRegistrationDelegate",
|
||||
"ERROR");
|
||||
|
||||
// 避免 sentinel 1.8.4+ 心跳日志过大
|
||||
System.setProperty("csp.sentinel.log.level", "OFF");
|
||||
}
|
||||
|
@ -0,0 +1,2 @@
|
||||
org.springframework.boot.env.EnvironmentPostProcessor=\
|
||||
com.pig4cloud.pig.common.log.init.ApplicationLoggerInitializer
|
Loading…
Reference in New Issue
Block a user