Hibernate:如何调整默认日志记录级别(SJF4J和JDK 1.4记录器)?

时间:2010-12-09 01:57:43

标签: java hibernate logging slf4j java.util.logging

我有一个JavaSE / Hibernate测试应用程序(基于shell)。我将以下JAR放入项目的lib目录中:

antlr-2.7.6.jar
commons-collections-3.1.jar
commons-lang-2.5.jar
dom4j-1.6.1.jar
hibernate-jpa-2.0-api-1.0.0.Final.jar
hibernate3.jar
javassist-3.12.0.GA.jar
jta-1.1.jar
slf4j-api-1.6.1.jar
slf4j-jdk14-1.6.1.jar

如您所见,我正在使用带有JDK 1.4记录器的SLF4J。当我从shell运行我的测试应用程序时,Hibernate非常冗长,因为它默认设置为INFO级别:

09.12.2010 02:23:14 org.hibernate.annotations.common.Version <clinit>
INFO: Hibernate Commons Annotations 3.2.0.Final
09.12.2010 02:23:14 org.hibernate.cfg.Environment <clinit>
INFO: Hibernate 3.6.0.Final
09.12.2010 02:23:14 org.hibernate.cfg.Environment <clinit>
INFO: hibernate.properties not found
09.12.2010 02:23:14 org.hibernate.cfg.Environment buildBytecodeProvider
INFO: Bytecode provider name : javassist
09.12.2010 02:23:14 org.hibernate.cfg.Environment <clinit>
INFO: using JDK 1.4 java.sql.Timestamp handling
09.12.2010 02:23:14 org.hibernate.ejb.Version <clinit>
INFO: Hibernate EntityManager 3.6.0.Final
09.12.2010 02:23:15 org.hibernate.cfg.AnnotationBinder bindClass
INFO: Binding entity from annotated class: tld.standalone.bbstats.model.Game
09.12.2010 02:23:15 org.hibernate.cfg.annotations.EntityBinder bindTable
INFO: Bind entity tld.standalone.bbstats.model.Game on table Games
09.12.2010 02:23:15 org.hibernate.cfg.AnnotationBinder bindClass
INFO: Binding entity from annotated class: tld.standalone.bbstats.model.Roster
09.12.2010 02:23:15 org.hibernate.cfg.annotations.EntityBinder bindTable
INFO: Bind entity tld.standalone.bbstats.model.Roster on table Rosters
.
.
.

如何调整Hibernate日志记录级别,说“警告”?

例如,EclipseLink允许您通过属性(persistence.xml)指定级别:

<property name="eclipselink.logging.level" value="INFO" />
<property name="eclipselink.logging.level.sql" value="FINE" />

Hibernate中有等效的吗?

3 个答案:

答案 0 :(得分:4)

我总是更喜欢使用中央配置文件而不是库的几个特定日志记录设置来配置日志框架,因为这是使用日志框架的原因之一。

Hibernate似乎follow that philosophy,因为您只使用JDK日志记录configure the log level with a property file

答案 1 :(得分:4)

在我的logging.properties文件中,我设置了:

org.hibernate.SQL.level=FINEST // Show SQL statements
org.hibernate.type.level=FINEST // Show the bind parameter values

答案 2 :(得分:0)

阻止hibernate如此冗长的最简单方法是将log4j-over-slf4j.jar添加到类路径中。那是因为hibernate使用log4j进行日志记录,当你添加那个jar时,所有通过log4j的日志记录都将被重定向到slf4j。