Turning off hibernate logging console output - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:50:16Zhttp://stackoverflow.com/feeds/question/311408http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/311408/turning-off-hibernate-logging-console-output5Turning off hibernate logging console outputJared2008-11-22T15:16:07Z2009-08-31T23:22:04Z
<p>I'm using hibernate 3 and want to stop it from dumping all the startup messages to the console. I tried commenting out the stdout lines in log4j.properties but no luck. I've pasted my log file below. Also I'm using eclipse with the standard project structure and have a copy of log4j.properties in both the root of the project folder and the bin folder.</p>
<pre>### direct log messages to stdout ###
#log4j.appender.stdout=org.apache.log4j.ConsoleAppender
#log4j.appender.stdout.Target=System.out
#log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
#log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
### direct messages to file hibernate.log ###
log4j.appender.file=org.apache.log4j.FileAppender
log4j.appender.file.File=hibernate.log
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
### set log levels - for more verbose logging change 'info' to 'debug' ###
log4j.rootLogger=warn, stdout
#log4j.logger.org.hibernate=info
log4j.logger.org.hibernate=debug
### log HQL query parser activity
#log4j.logger.org.hibernate.hql.ast.AST=debug
### log just the SQL
#log4j.logger.org.hibernate.SQL=debug
### log JDBC bind parameters ###
log4j.logger.org.hibernate.type=info
#log4j.logger.org.hibernate.type=debug
### log schema export/update ###
log4j.logger.org.hibernate.tool.hbm2ddl=debug
### log HQL parse trees
#log4j.logger.org.hibernate.hql=debug
### log cache activity ###
#log4j.logger.org.hibernate.cache=debug
### log transaction activity
#log4j.logger.org.hibernate.transaction=debug
### log JDBC resource acquisition
#log4j.logger.org.hibernate.jdbc=debug
### enable the following line if you want to track down connection ###
### leakages when using DriverManagerConnectionProvider ###
#log4j.logger.org.hibernate.connection.DriverManagerConnectionProvider=trac5</pre>
http://stackoverflow.com/questions/311408/turning-off-hibernate-logging-console-output/311445#3114456Answer by Juha Syrjälä for Turning off hibernate logging console outputJuha Syrjälä2008-11-22T15:48:24Z2009-01-14T19:57:52Z<p>Try to set more reasonable logging level:</p>
<pre><code>log4j.logger.org.hibernate=info
</code></pre>
<p>or in <a href="http://wiki.apache.org/logging-log4j/Log4jXmlFormat" rel="nofollow">XML version</a> of log4j config file:</p>
<pre><code><logger name="org.hibernate">
<level value="info"/>
</logger>
</code></pre>
<p>See also <a href="http://logging.apache.org/log4j/1.2/manual.html" rel="nofollow">log4j manual</a>.</p>
http://stackoverflow.com/questions/311408/turning-off-hibernate-logging-console-output/325747#3257471Answer by Vudko for Turning off hibernate logging console outputVudko2008-11-28T13:08:09Z2009-08-31T23:22:04Z<p>You can disabled the many of the outputs of hibernate setting this props of hibernate (hb configuration) a false:</p>
<pre><code>hibernate.show_sql
hibernate.generate_statistics
hibernate.use_sql_comments
</code></pre>
<p>But if you want to disable all console info you must to set the logger level a NONE of FATAL of class <code>org.hibernate</code> like Juha say.</p>