Author: jacopoc
Date: Fri Aug 22 13:12:51 2014
New Revision: 1619799
URL:
http://svn.apache.org/r1619799Log:
Trivial fix to a log statement.
Modified:
ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/JNDIFactory.java
Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/JNDIFactory.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/JNDIFactory.java?rev=1619799&r1=1619798&r2=1619799&view=diff==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/JNDIFactory.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/transaction/JNDIFactory.java Fri Aug 22 13:12:51 2014
@@ -203,7 +203,7 @@ public class JNDIFactory implements Tran
Debug.logError("Datasource returned was NULL.", module);
}
} catch (NamingException ne) {
- Debug.logWarning(ne, "[ConnectionFactory.getConnection] Failed to find DataSource named " + jndiName + " in JNDI server with name " + jndiServerName + ". Trying normal database.", module);
+ Debug.logWarning(ne, "Failed to find DataSource named " + jndiName + " in JNDI server with name " + jndiServerName + ". Trying normal database.", module);
} catch (GenericConfigException gce) {
throw new GenericEntityException("Problems with the JNDI configuration.", gce.getNested());
}