how can we log spring Transaction mechanism. i am showing below example shown in Spring Doc sec 10.5.2.if i want to logging upto this level how to do that
i am usin
If you're just willing to set the log level of spring transaction support, try adding the following logger to your log4j.xml :
<logger name="org.springframework.transaction">
<level value="DEBUG" />
</logger>
There's a section about Logging in the Spring Reference.
It shows how to configure different logging frameworks, among them log4j
In your case the last line of the config would be:
log4j.logger.org.springframework.transaction=DEBUG