Author: gmazza
Date: Fri Feb 1 06:34:47 2008
New Revision: 617507
URL: http://svn.apache.org/viewvc?rev=617507&view=rev
Log:
Raised the logging level a bit of missing config files, also clarified the
message if no cxf.xml name specified or found. Anyone have a problem with this
please speak up.
Modified:
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContext.java
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/Messages.properties
Modified:
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContext.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContext.java?rev=617507&r1=617506&r2=617507&view=diff
==============================================================================
---
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContext.java
(original)
+++
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/BusApplicationContext.java
Fri Feb 1 06:34:47 2008
@@ -122,9 +122,9 @@
resources.add(cpr);
} else {
if (!usingDefault) {
- LogUtils.log(LOG, Level.INFO, "USER_CFG_FILE_NOT_FOUND_MSG",
cfgFile);
+ LogUtils.log(LOG, Level.WARNING,
"USER_CFG_FILE_NOT_FOUND_MSG", cfgFile);
} else {
- LogUtils.log(LOG, Level.FINE, "USER_CFG_FILE_NOT_FOUND_MSG",
cfgFile);
+ LogUtils.log(LOG, Level.INFO,
"USER_CFG_FILE_NOT_SPECIFIED_MSG", cfgFile);
}
}
@@ -133,7 +133,7 @@
if (ur.exists()) {
resources.add(ur);
} else {
- LogUtils.log(LOG, Level.INFO,
"USER_CFG_FILE_URL_NOT_FOUND_MSG", cfgFileURL);
+ LogUtils.log(LOG, Level.WARNING,
"USER_CFG_FILE_URL_NOT_FOUND_MSG", cfgFileURL);
}
}
@@ -144,10 +144,10 @@
if (ur.exists()) {
resources.add(ur);
} else {
- LogUtils.log(LOG, Level.INFO,
"USER_CFG_FILE_URL_NOT_FOUND_MSG", sysCfgFileUrl);
+ LogUtils.log(LOG, Level.WARNING,
"USER_CFG_FILE_URL_NOT_FOUND_MSG", sysCfgFileUrl);
}
} catch (MalformedURLException e) {
- LogUtils.log(LOG, Level.INFO, "USER_CFG_FILE_URL_ERROR_MSG",
sysCfgFileUrl);
+ LogUtils.log(LOG, Level.WARNING,
"USER_CFG_FILE_URL_ERROR_MSG", sysCfgFileUrl);
}
}
Modified:
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/Messages.properties
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/Messages.properties?rev=617507&r1=617506&r2=617507&view=diff
==============================================================================
---
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/Messages.properties
(original)
+++
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/bus/spring/Messages.properties
Fri Feb 1 06:34:47 2008
@@ -19,6 +19,7 @@
#
#
USER_CFG_FILE_NOT_FOUND_MSG = Could not find the configuration file {0} on the
classpath.
+USER_CFG_FILE_NOT_SPECIFIED_MSG = No cxf.xml configuration file detected,
relying on defaults.
USER_CFG_FILE_URL_ERROR_MSG = The configuration file URL {0} is a a malformed
URL.
USER_CFG_FILE_URL_NOT_FOUND_MSG = Could not find the configuration file in the
url of {0}.
APP_CONTEXT_CREATION_FAILED_MSG = Failed to create application context.