I have an interface that I want Hibernate to log everything to. My curernt configuration is done programmatically, so I don't have any hibernate.properties or hibernate.cfg.xml file.

configuration = new Configuration()  
.setProperty( "hibernate.connection.driver_class", "org.postgresql.Driver" )
.setProperty( "hibernate.dialect","org.hibernate.dialect.PostgreSQLDialect")
.setProperty( "hibernate.connection.url", "jdbc:postgresql://****:5483/postgres")
.setProperty( "hibernate.connection.username", "****")
.setProperty( "hibernate.connection.password", "****")
.setProperty( "hibernate.c3p0.min_size"," 5")
.setProperty( "hibernate.c3p0.max_size"," 20")
.setProperty( "hibernate.c3p0.timeout"," 1800")
.setProperty( "hibernate.c3p0.max_statements"," 50")
.setProperty( "hibernate.connection.pool_size", "1" )
.setProperty( "hibernate.current_session_context_class", "thread")
.setProperty( "hibernatecache.provider_class", "org.hibernate.cache.NoCacheProvider")
.setProperty( "hibernate.show_sql", "true" )
.addAnnotatedClass( ... )
.addAnnotatedClass( ... )
;

I have a logging interface which has a method

public void logLine( String line );

How can I

1) specify what is logged

2) redirect the logs to the interface?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Hibernate is logging output to the stdout. You'll have to somehow intercept it and redirect to your logging mechanism.

link|improve this answer
that's not an applicable solution - I know that slf4j has output to file, but it's not what I want either. – iliaden Jun 13 '11 at 20:20
@iliaden: I don't believe Hibernate is logging SQL through slf4j. All versions of Hibernate I used were logging it straight to the stdout. – Olaf Jun 13 '11 at 20:22
@Olaf: "Hibernate utilizes Simple Logging Facade for Java (SLF4J) in order to log various system events." - docs.jboss.org/hibernate/core/3.3/reference/en/html/… – iliaden Jun 13 '11 at 20:24
if you know how slf4j works - this would also be a valid solution - I have no experience with slf4j, and I don't know how to redirect it to an interface. google only tells me how to log to file. – iliaden Jun 13 '11 at 20:25
1  
@iliaden: Looks like you will have to implement org.slf4j.Logger interface. You can check out logback project as a sample native implementation of that interface. Good luck! – Olaf Jun 13 '11 at 20:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.