I'm rather new to Hibernate, but I've inherited some legacy Java/Hibernate code whose logging behavior has me stumped. INFO messages are shown as Error messages.
Hibernate version: 3.1.3
Name and version of the database I'm using: Sybase 12.5.2
I'm getting log outputs at the console that look like the following. The problem is that none of these are errors (they're INFOs), yet they show up as errors. What can I do?
Error [main] - 15699 [main] INFO cfg.Environment - Hibernate 3.1.3
Error [main] - 15708 [main] INFO cfg.Environment - hibernate.properties not found
Error [main] - 15711 [main] INFO cfg.Environment - using CGLIB reflection optimizer
Error [main] - 15712 [main] INFO cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
Error [main] - 15838 [main] INFO cfg.Configuration - Reading mappings from resource: com/service/beans/routing/Route.hbm.xml
Error [main] - 16068 [main] INFO cfg.HbmBinder - Mapping class: com.service.beans.routing.Route -> ROUTINGTABLE
.... and more.
There are no actual errors, yet every initialization message shows up as an error message.
What could be the problem? Is it a missing log4j properties file? The code doesn't use (or need) a hibernate.properties file.
TIA.
|