Spring ApplicationContextShutdownBean entries in log
My SpringSource dm Server log is full开发者_运维知识库 of lines like the following:
com.springsource.server.kernel.dm.ApplicationContextShutdownBean < void com.springsource.server.kernel.dm.ApplicationContextShutdownBean.onApplicationEvent(ApplicationEvent)
making it hard to spot interesting log events.
How can I turn these log entries off?
why don't you suppress it via config/server.config?
"serviceability": { "trace": { "directory": "serviceability/trace", "levels": { "com.springsource.server.kernel.dm.ApplicationContextShutdownBean" : "warn", "*" : "info"
精彩评论