costin      01/08/23 07:42:46

  Modified:    src/etc  server.xml
  Log:
  Removed debug="0", it's the default. EmbededTomcat can override the debug, but
  ServerXml reader will change it back to 0 if the attribute is present.
  
  Using -debug XXX cli option will generate a lot of output ( since it enables
  debugging on all components ), but it's sometimes a quick way to find a problem
  without editing files.
  
  Revision  Changes    Path
  1.87      +5 -5      jakarta-tomcat/src/etc/server.xml
  
  Index: server.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/etc/server.xml,v
  retrieving revision 1.86
  retrieving revision 1.87
  diff -u -r1.86 -r1.87
  --- server.xml        2001/08/16 00:38:06     1.86
  +++ server.xml        2001/08/23 14:42:46     1.87
  @@ -7,7 +7,7 @@
            webapps/, work/ and log/ will be relative to this ( unless 
            set explicitely to absolute paths ).
         -->
  -    <ContextManager debug="0" workDir="work" >
  +    <ContextManager workDir="work" >
   
         <!-- ==================== Global modules ==================== -->
           <LoaderInterceptor11  useApplicationLoader="true" />
  @@ -37,7 +37,7 @@
           <PolicyLoader securityManagerClass="java.lang.SecurityManager"
                      policyFile="conf/tomcat.policy" />
   
  -        <SimpleMapper1 debug="0" />
  +        <SimpleMapper1 />
   
           <SessionExpirer checkInterval="60" />
           <!-- For development you can use randomClass="java.util.Random" -->
  @@ -79,7 +79,7 @@
                        useJspServlet="false"
                        />
           
  -        <StaticInterceptor  debug="0" listings="true" />
  +        <StaticInterceptor listings="true" />
           
           <ReloadInterceptor fullReload="true" />
   
  @@ -145,12 +145,12 @@
               path="logs/tagpool-${yyyyMMdd}.log" 
               verbosityLevel="INFORMATION" />
   
  -        <TagPoolManagerInterceptor debug="0"/>
  +        <TagPoolManagerInterceptor />
           -->
   
           <!-- Request processing -->
   
  -        <DecodeInterceptor debug="0" /> 
  +        <DecodeInterceptor /> 
   
           <SessionId cookiesFirst="true" noCookies="false" /> 
   
  
  
  

Reply via email to