costin      01/02/19 11:49:48

  Modified:    src/share/org/apache/tomcat/util/log Log.java
  Log:
  Missed this one - flush() must be defined in Log.
  
  Revision  Changes    Path
  1.3       +5 -1      jakarta-tomcat/src/share/org/apache/tomcat/util/log/Log.java
  
  Index: Log.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/util/log/Log.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Log.java  2001/02/03 05:29:50     1.2
  +++ Log.java  2001/02/19 19:49:47     1.3
  @@ -218,7 +218,11 @@
        loggerTemp.log(msg, t, level);
       }
   
  -
  +    public void flush() {
  +     if( logger!=null )
  +         logger.flush();
  +    }
  +    
       // -------------------- Extra configuration stuff --------------------
       // The real logger object ( that knows to write to
       // files, optimizations, etc)
  
  
  

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

Reply via email to