[hibernate-commits] Hibernate SVN: r11338 - branches/Branch_3_2/Hibernate3/src/org/hibernate/impl.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Mar 22 18:43:13 EDT 2007


Author: epbernard
Date: 2007-03-22 18:43:13 -0400 (Thu, 22 Mar 2007)
New Revision: 11338

Modified:
   branches/Branch_3_2/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: branches/Branch_3_2/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java
===================================================================
--- branches/Branch_3_2/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java	2007-03-22 22:42:58 UTC (rev 11337)
+++ branches/Branch_3_2/Hibernate3/src/org/hibernate/impl/SessionFactoryObjectFactory.java	2007-03-22 22:43:13 UTC (rev 11338)
@@ -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