我是spring boot的新手。我想通过spring框架删除下面的日志,当我的spring boot应用程序关闭时,默认情况下会打印。
我正在使用logback.xml进行日志记录。
2018-07-02 21:56:11.623 [main] INFO o.s.c.a.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@14514713: startup date [Mon Jul 02 21:55:43 UTC 2018]; root of context hierarchy
2018-07-02 21:56:11.624 [main] INFO o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on shutdown
我尝试通过在logback.xml文件中的以下条目进行尝试,但这没有用。
<logger name="org.springframework.boot" level="off" additivity="false">
<appender-ref ref="FILE" />
</logger>
答案 0 :(得分:0)
如果要禁用所有Spring类的日志,请使用以下内容。
<logger name="org.springframework" level="off"/>
您无需提及appender-ref
,因为它不会被打印。