You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by hu...@apache.org on 2013/02/28 21:30:29 UTC

git commit: refs/heads/master - Don't load from a fixed path, but load from the classpath so admins or packagers can overwrite the logging config

Updated Branches:
  refs/heads/master b1fcccc3f -> 97ca7791b


Don't load from a fixed path, but load from the classpath so admins or packagers can overwrite the logging config


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/97ca7791
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/97ca7791
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/97ca7791

Branch: refs/heads/master
Commit: 97ca7791b319d79578f5147844a694d1461270c4
Parents: b1fcccc
Author: Hugo Trippaers <tr...@gmail.com>
Authored: Thu Feb 28 21:28:46 2013 +0100
Committer: Hugo Trippaers <tr...@gmail.com>
Committed: Thu Feb 28 21:28:46 2013 +0100

----------------------------------------------------------------------
 client/WEB-INF/web.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/97ca7791/client/WEB-INF/web.xml
----------------------------------------------------------------------
diff --git a/client/WEB-INF/web.xml b/client/WEB-INF/web.xml
index 626305b..da2f13c 100644
--- a/client/WEB-INF/web.xml
+++ b/client/WEB-INF/web.xml
@@ -22,7 +22,7 @@
    
     <context-param>  
       <param-name>log4jConfigLocation</param-name>  
-      <param-value>/WEB-INF/classes/log4j-cloud.xml</param-value>  
+      <param-value>classpath:log4j-cloud.xml</param-value>  
     </context-param>  
     <listener>  
       <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>