[hibernate-commits] Hibernate SVN: r11337 - trunk/Hibernate3/src/org/hibernate/impl.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Mar 22 18:42:58 EDT 2007


Author: epbernard
Date: 2007-03-22 18:42:58 -0400 (Thu, 22 Mar 2007)
New Revision: 11337

Modified:
   trunk/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java
Log:
HHH-2513 move lookup failure from WARN to DEBUG, it's catch up by the caller anyway

Modified: trunk/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java
===================================================================
--- trunk/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java	2007-03-22 21:08:24 UTC (rev 11336)
+++ trunk/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java	2007-03-22 22:42:58 UTC (rev 11337)
@@ -135,7 +135,7 @@
 		log.debug("lookup: name=" + name);
 		Object result = NAMED_INSTANCES.get(name);
 		if (result==null) {
-			log.warn("Not found: " + name);
+			log.debug("Not found: " + name);
 			log.debug(NAMED_INSTANCES);
 		}
 		return result;
@@ -145,7 +145,7 @@
 		log.debug("lookup: uid=" + uid);
 		Object result = INSTANCES.get(uid);
 		if (result==null) {
-			log.warn("Not found: " + uid);
+			log.debug("Not found: " + uid);
 			log.debug(INSTANCES);
 		}
 		return result;




More information about the hibernate-commits mailing list