I have a hibernate that is configured only programmatically ( I don't have a single XML file ).

I just finished writing my own implementation of org.slf4j.Logger.
How can I force hibernate to log to my implementation instead of the default one?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

AFAIK you can't just change hibernates logging behaviour, but you can get slf4j to use your source with slf4j 'Bridging legacy APIs'

Ok if you re-implemented a slf4j logger, you are using the slf4j-api right ? if you are using Maven you could alter the dependencies for your project (see e.g. hibernate slf4j dependencies) to use your implementation jar instead

link|improve this answer
thanks, but I still can't figure out how to make slf4j use a custom implementation, rather than an already created one (jcl, log4j, jul). – iliaden Jun 20 '11 at 14:35
I'm following the instructions from slf4j.org/faq.html#slf4j_compatible . However, they require me to implement a StaticLoggerBinder class. Does it mean I have to download the entire source and rewrite the StaticLoggerBinder, or is there another approach? – iliaden Jun 20 '11 at 17:18
1  
you could fork slf4j-simple, you only need to create the factory and change the StaticLoggerBinder – Michael Lange Jun 20 '11 at 17:40
I sitll cannot figure out how to get Hibernate to use my StaticLoggerBinder instead of the default one, present in slf4j-api.jar – iliaden Jun 20 '11 at 18:08
reading slf4j-api LoggerFactory i guess it should just work, either slf4j prints an error msg and uses the standard StaticLoggerBinder or it uses your version – Michael Lange Jun 20 '11 at 20:03
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.