From 3cd50f6e40b65cd9c595bbcd215ed77c0cc6e230 Mon Sep 17 00:00:00 2001 From: Strong Liu Date: Tue, 24 May 2011 17:31:11 +0800 Subject: [PATCH] HHH-6248 Ominous-sounding WARN message from SessionFactoryObjectFactory --- .../java/org/hibernate/impl/SessionFactoryObjectFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hibernate-core/src/main/java/org/hibernate/impl/SessionFactoryObjectFactory.java b/hibernate-core/src/main/java/org/hibernate/impl/SessionFactoryObjectFactory.java index 4656d4de44..bebaec196c 100644 --- a/hibernate-core/src/main/java/org/hibernate/impl/SessionFactoryObjectFactory.java +++ b/hibernate-core/src/main/java/org/hibernate/impl/SessionFactoryObjectFactory.java @@ -121,7 +121,7 @@ public class SessionFactoryObjectFactory implements ObjectFactory { log.warn("Could not bind factory to JNDI", ne); } catch(ClassCastException cce) { - log.warn("InitialContext did not implement EventContext"); + log.debug("InitialContext did not implement EventContext"); } }