Author: dblevins
Date: Tue Mar 4 21:34:56 2008
New Revision: 633775
URL: http://svn.apache.org/viewvc?rev=633775&view=rev
Log:
lowering these two warnings to infos
Modified:
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/config/ConfigUtils.java
Modified:
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/config/ConfigUtils.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/config/ConfigUtils.java?rev=633775&r1=633774&r2=633775&view=diff
==============================================================================
---
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/config/ConfigUtils.java
(original)
+++
openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/config/ConfigUtils.java
Tue Mar 4 21:34:56 2008
@@ -123,10 +123,10 @@
// TODO: DMB: This logic needs to be revisited
if (confDir.exists()) {
File config = new File(confDir, "openejb.xml");
- logger.warning("Cannot find the configuration file
[conf/openejb.xml]. Creating one at "+config.getAbsolutePath());
+ logger.info("Cannot find the configuration file
[conf/openejb.xml]. Creating one at "+config.getAbsolutePath());
file = createConfig(config);
} else {
- logger.warning("Cannot find the configuration file
[conf/openejb.xml]. Will attempt to create one for the beans deployed.");
+ logger.info("Cannot find the configuration file
[conf/openejb.xml]. Will attempt to create one for the beans deployed.");
// logger.warning("Cannot find the configuration file
[conf/openejb.xml]. Using the default configuration.");
// ClassLoader classLoader =
Thread.currentThread().getContextClassLoader();
// URL resource =
classLoader.getResource("default.openejb.conf");