0

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?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Eric J.
  • 147,927
  • 63
  • 340
  • 553

1 Answers1

1

why don't you suppress it via config/server.config?

"serviceability": { "trace": { "directory": "serviceability/trace", "levels": { "com.springsource.server.kernel.dm.ApplicationContextShutdownBean" : "warn", "*" : "info"

m.khl
  • 26
  • 1