vote up 3 vote down star
1

I haven't been able to find any documentation on how to configure Hibernate's logging using the XML style configuration file for Log4j.

Is this even possible or do I have use a properties style configuration file to control Hibernate's logging?

If anyone has any information or links to documentation it would appreciated.

EDIT:
Just to clarify, I am looking for example of the actual XML syntax to control Hibernate.

EDIT2:
Here is what I have in my XML config file.

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">

<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
    <appender name="console" class="org.apache.log4j.ConsoleAppender">
        <param name="Threshold" value="info"/>
        <param name="Target" value="System.out"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d{ABSOLUTE} [%t] %-5p %c{1} - %m%n"/>
        </layout>
    </appender>
    <appender name="rolling-file" class="org.apache.log4j.RollingFileAppender">
        <param name="file" value="Program-Name.log"/>
        <param name="MaxFileSize" value="1000KB"/>
    <!-- Keep one backup file -->
        <param name="MaxBackupIndex" value="4"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d [%t] %-5p %l - %m%n"/>
        </layout>
    </appender>

    <root>
        <priority value ="debug" />
        <appender-ref ref="console" />
        <appender-ref ref="rolling-file" />
    </root>
</log4j:configuration>

Logging works fine but I am looking for a way to step down and control the hibernate logging in way that separate from my application level logging, as it currently is flooding my logs. I have found examples of using the preference file to do this, I was just wondering how I can do this in a XML file.

flag

nemo, did ypu ever find out how to do this the xml way? Maybe you could post an answer to your question if you did. – homaxto Feb 6 at 13:18
homaxto, I did. I will post that for you once I get a chance. – James McMahon Feb 6 at 15:52
2k views and only one vote up? Must be a lot of Google hits. – James McMahon May 1 at 14:54

6 Answers

vote up 3 vote down check

From http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#configuration-logging

Here's the list of logger categories:

Category                    Function

org.hibernate.SQL           Log all SQL DML statements as they are executed
org.hibernate.type          Log all JDBC parameters
org.hibernate.tool.hbm2ddl  Log all SQL DDL statements as they are executed
org.hibernate.pretty        Log the state of all entities (max 20 entities) associated with the session at flush time
org.hibernate.cache         Log all second-level cache activity
org.hibernate.transaction   Log transaction related activity
org.hibernate.jdbc          Log all JDBC resource acquisition
org.hibernate.hql.ast.AST   Log HQL and SQL ASTs during query parsing
org.hibernate.secure        Log all JAAS authorization requests
org.hibernate               Log everything (a lot of information, but very useful for troubleshooting)

And a category is specified as such:

<logger name="org.hibernate">
	<level value="ALL" />
	<appender-ref ref="FILE"/>
</logger>

It must be placed before the root element.

link|flag
This looks good. Thank you. – James McMahon Jan 12 at 20:02
I am not sure what <appender-ref> is doing there, when I change it to an appender in my config, hibernate still seems to log to both console and my file appender. Strange. – James McMahon Jan 12 at 20:05
vote up 1 vote down

In response to homaxto's comment, I will clean this up when I get a chance, but this is what I have right now.

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">

<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
    <appender name="console" class="org.apache.log4j.ConsoleAppender">
        <param name="Threshold" value="debug"/>
        <param name="Target" value="System.out"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d{ABSOLUTE} [%t] %-5p %c{1} - %m%n"/>
        </layout>
    </appender>
    <appender name="rolling-file" class="org.apache.log4j.RollingFileAppender">
        <param name="file" value="Program-Name.log"/>
        <param name="MaxFileSize" value="500KB"/>
        <param name="MaxBackupIndex" value="4"/>
        <layout class="org.apache.log4j.PatternLayout">
            <param name="ConversionPattern" value="%d [%t] %-5p %l - %m%n"/>
        </layout>
    </appender>

    <logger name="org.hibernate">
        <level value="info" />
    </logger>

    <root>
        <priority value ="debug" />
        <appender-ref ref="console" />
        <appender-ref ref="rolling-file" />
    </root>
</log4j:configuration>

The key part being

<logger name="org.hibernate">
    <level value="info" />
</logger>

Hope this helps.

link|flag
vote up 0 vote down

Here's the simplest log4j.xml I can think of. Amend as you see fit:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration debug="true"
                 xmlns:log4j='http://jakarta.apache.org/log4j/'>

   <appender name="consoleAppender" class="org.apache.log4j.ConsoleAppender">
      <layout class="org.apache.log4j.PatternLayout">
          <param name="ConversionPattern" value="%d{dd MMM yyyy HH:mm:ss} %5p %c{1} - %m%n"/>
      </layout>
   </appender>

   <root>
       <level value="debug"/>
       <appender-ref ref="consoleAppender"/>
   </root>

</log4j:configuration>
link|flag
1  
If deployed in an application that did a bare minimum of work, this would fill up the catalina.out (if using Tomcat) pretty quickly. You could change the root logger to, well, nothing and have the Hibernate specific package log using your appender layout. Also, check the 'debug' option in Hibernate. – Joe Liversedge Jan 12 at 18:23
Ha, I actually tried to post my config, which looks very similar to this, in the question. How did you get XML to post correctly in the code block? I obviously need to clarify my question alittle further. I am looking for away to control hibernate through this file. – James McMahon Jan 12 at 19:16
I had that problem with XML posting at first. Use the "code" button up above and make sure everything is indented in four spaces - does the trick for me. – duffymo Jan 12 at 19:28
vote up 0 vote down

Try adding the Hibernate Log4J Appender to the log4j.xml that I posted.

http://www.hibernate.org/97.html

Maybe that's the ticket.

link|flag
Nope, that isn't it. Thanks for trying to help. – James McMahon Jan 12 at 22:03
vote up 0 vote down

Here's what I use:

<logger name="org.hibernate">
    <level value="warn"/>
</logger>

<logger name="org.hibernate.SQL">
    <level value="warn"/>
</logger>

<logger name="org.hibernate.type">
    <level value="warn"/>
</logger>

<root>
    <priority value="info"/>
    <appender-ref ref="C1"/>
</root>

Obviously, I don't like to see Hibernate messages ;) -- set the level to "debug" to get the output.

link|flag
vote up -2 vote down

Hibernate uses Apache Commons logging, which means you can use log4j as your implementation.

Of course you can use log4j.xml - just put it in your CLASSPATH.

This link explains all.

link|flag
Yeah it on the Classpath, it's a valid configuration. You say I can, but how do I? What is the actual XML? – James McMahon Jan 12 at 17:56
2  
Actually they are on SLF4J now... hibernate.org/hib_docs/v3/… – Loki Jan 12 at 19:39

Your Answer

Get an OpenID
or

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