java_geek
java_geek

Reputation: 18045

Changing Spring containers log level setting

How do i change the log level of a spring container which does not run in an appserver?

Upvotes: 1

Views: 3372

Answers (1)

Bozho
Bozho

Reputation: 597422

in your log4j.properties (if using log4j):

log4j.logger.org.springframework=INFO

Upvotes: 4

Related Questions