i am using log4j and i want to disable hibernate info logging, so here's what i tried, but it doesn't work and i still see the hibernate info logging:

1- log4j.properties:

log4j.rootLogger=DEBUG, stdout, rootLog
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

# Pattern to output the caller's file name and line number.
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n

log4j.appender.rootLog=org.apache.log4j.RollingFileAppender
log4j.appender.rootLog.File=${user.home}/devlopmentLogs/mylog.log
log4j.appender.rootLog.MaxFileSize=10000KB
log4j.appender.rootLog.MaxBackupIndex=3
log4j.appender.rootLog.layout=org.apache.log4j.PatternLayout
log4j.appender.rootLog.layout.ConversionPattern=%p %t %c - %m%n


log4j.logger.org.hibernate=FATAL
log4j.logger.org.springframework=ERROR
log4j.logger.org.springframework.security=ERROR

2- Jars:

<dependency>
   <groupId>org.hibernate</groupId>
   <artifactId>hibernate-entitymanager</artifactId>
   <version>3.6.8.Final</version>
</dependency>


 <dependency>
  <groupId>org.slf4j</groupId>
  <artifactId>slf4j-api</artifactId>
  <version>1.6.4</version>
</dependency>

<!-- concrete Log4J Implementation for SLF4J API-->

<dependency>
  <groupId>org.slf4j</groupId>
  <artifactId>slf4j-log4j12</artifactId>
  <version>1.6.4</version>
</dependency>

please advise why i am still seeing the hibernate info logging, and how to turn it off ?

and do i need to exclude the slf4j-api from other hibernate dependencies ?

link|improve this question

72% accept rate
2  
I suspect the changes to your log4j.properties are not being picked up in classpath. – adarshr Jan 3 at 11:50
I think you also need the log4j jar file version 1.2.15, can you add this and try once – Arun P Johny Jan 3 at 12:18
@Arun P Johnydo, i need to exclude the slf4j-api from other hibernate dependencies ? – fresh_dev Jan 3 at 14:02
feedback

closed as too localized by casperOne Jan 4 at 13:47

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

found out that above configuration is correct and the changes to log4j wasn't published to classpath.

link|improve this answer
feedback

In META-INF/persistence.xml of your project,

This line exist: property name="hibernate.show_sql" value="true"

Set value false.

link|improve this answer
feedback

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