costin      01/01/31 22:41:16

  Modified:    src/share/org/apache/tomcat/modules/config LogSetter.java
  Log:
  NPE - path can be null ( for console output ).
  
  Note that per/context interceptors are not working right now, I'll
  have them restored tommorow night. I also have to commit the fix
  to the original problem ( war expansion broken ).
  
  Revision  Changes    Path
  1.3       +2 -1      
jakarta-tomcat/src/share/org/apache/tomcat/modules/config/LogSetter.java
  
  Index: LogSetter.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/config/LogSetter.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LogSetter.java    2001/02/01 06:08:48     1.2
  +++ LogSetter.java    2001/02/01 06:41:16     1.3
  @@ -164,7 +164,7 @@
       {
        if( module!=this ) return;
   
  -     if( ! FileUtil.isAbsolute( path ) ) {
  +     if( path!=null && ! FileUtil.isAbsolute( path ) ) {
            File wd= new File(cm.getHome(), path);
            path= wd.getAbsolutePath();
        }
  @@ -181,6 +181,7 @@
   
        ql.open();
   
  +     //      if( debug>-1) log("Adding logger " + name + " " + servletLogger + " " 
+ ctx );
        cm.addLogger( ql );
   
        if( ctx!=null ) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to