0 Replies Latest reply on Jul 5, 2005 10:56 AM by darras77

    Log and web.xml

    darras77

      Hello,

      I have a problem when i deploy a web application (based on Struts framework)

      When jboss loaded my WAR application, i obtain this resultat in my console


      16:33:38,812 INFO [TomcatDeployer] deploy, ctxPath=/ressources, warUrl=file:/D:/ProgramFiles/jboss-3.2.7/server/all/tmp/deploy/tmp10541Cochise.ear-contents/CochiseRessources.war/
      16:33:39,000 INFO [STDOUT] 16:33:39,000 debug [StandardContext] AddChild jboss.web:type=Host,host=localhost StandardContext[/ressources]
      16:33:39,000 INFO [STDOUT] 16:33:39,000 debug [Context] Starting tomcat.localhost./ressources.Context
      16:33:39,015 INFO [STDOUT] 16:33:39,015 debug [Context] Configuring default Resources
      16:33:39,031 INFO [STDOUT] 16:33:39,031 debug [Context] Processing standard container startup
      16:33:39,078 INFO [STDOUT] 16:33:39,078 debug [Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      16:33:39,218 INFO [STDOUT] 16:33:39,218 debug [Context] Setting deployment descriptor public ID to '-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN'
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Registering jboss.web:type=Manager,path=/ressources,host=localhost
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Force random number initialization starting
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Getting message digest component for algorithm MD5
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Completed getting message digest component
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] getDigest() 0
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Force random number initialization completed
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Start: Loading persisted sessions
      16:33:39,234 INFO [STDOUT] 16:33:39,234 debug [ManagerBase] Loading persisted sessions from SESSIONS.ser


      two informations :
      - why my log INFO encapsule a log DEBUG
      - where is th param to to avoid posting this log

      This is a part of my web.xml :

      <servlet>
      <servlet-name>action</servlet-name>
      <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
      
      <init-param>
       <param-name>config</param-name>
       <param-value>/WEB-INF/struts-config.xml</param-value>
      </init-param>
      
      <init-param>
       <param-name>validating</param-name>
       <param-value>false</param-value>
      </init-param>
      
      <init-param>
       <param-name>xxx</param-name>
       <param-value>xxx</param-value>
      </init-param>
      
      <init-param>
       <param-name>debug</param-name>
       <param-value>0</param-value>
      </init-param>
      
      <init-param>
       <param-name>detail</param-name>
       <param-value>0</param-value>
      </init-param>
      
      <load-on-startup>1</load-on-startup>
      </servlet>
      


      Thks for your help
      Franck