You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2016/03/26 10:27:58 UTC

struts git commit: Reduces log verbosity when there is no config file

Repository: struts
Updated Branches:
  refs/heads/master 2aa094ed9 -> df29298ee


Reduces log verbosity when there is no config file


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/df29298e
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/df29298e
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/df29298e

Branch: refs/heads/master
Commit: df29298eeda59d7f8e0f8ae7445bc01a561c7f5d
Parents: 2aa094e
Author: Lukasz Lenart <lu...@apache.org>
Authored: Sat Mar 26 10:27:50 2016 +0100
Committer: Lukasz Lenart <lu...@apache.org>
Committed: Sat Mar 26 10:27:50 2016 +0100

----------------------------------------------------------------------
 .../xwork2/config/providers/XmlConfigurationProvider.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/df29298e/core/src/main/java/com/opensymphony/xwork2/config/providers/XmlConfigurationProvider.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/com/opensymphony/xwork2/config/providers/XmlConfigurationProvider.java b/core/src/main/java/com/opensymphony/xwork2/config/providers/XmlConfigurationProvider.java
index cb5ef38..6075be2 100644
--- a/core/src/main/java/com/opensymphony/xwork2/config/providers/XmlConfigurationProvider.java
+++ b/core/src/main/java/com/opensymphony/xwork2/config/providers/XmlConfigurationProvider.java
@@ -1024,7 +1024,7 @@ public class XmlConfigurationProvider implements ConfigurationProvider {
                 if (errorIfMissing) {
                     throw new ConfigurationException("Could not open files of the name " + fileName, ioException);
                 } else {
-                    LOG.info("Unable to locate configuration files of the name {}, skipping", fileName);
+                    LOG.trace("Unable to locate configuration files of the name {}, skipping", fileName);
                     return docs;
                 }
             }