karq
karq

Reputation: 859

Hibernate transaction id logging

is it possible to log something like hibernate transaction id? Does a hibernate transaction have a ID? Basically I have to log every transaction it would be great if those had a id.

Hope someone can suggest me a solution :)

I'm using spring 3 mvc, hibernate, hypersonic database, log4j

Upvotes: 1

Views: 2866

Answers (1)

jeha
jeha

Reputation: 10730

When you are using Spring, I assume you also use a Spring transaction manager. You can set log level for org.springframework.transaction package to INFO or even DEBUG to see what is going on.

Upvotes: 1

Related Questions