You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2004/07/03 19:41:09 UTC

cvs commit: httpd-2.0/modules/filters mod_deflate.c

nd          2004/07/03 10:41:09

  Modified:    modules/filters mod_deflate.c
  Log:
  that's not really an error condition, so make the message APLOG_DEBUG.
  
  Revision  Changes    Path
  1.52      +1 -1      httpd-2.0/modules/filters/mod_deflate.c
  
  Index: mod_deflate.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/filters/mod_deflate.c,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -u -r1.51 -r1.52
  --- mod_deflate.c	25 Jun 2004 03:44:29 -0000	1.51
  +++ mod_deflate.c	3 Jul 2004 17:41:09 -0000	1.52
  @@ -1005,7 +1005,7 @@
                   zlib_method = data[2] ;
                   zlib_flags = data[3] ;
                   if ( zlib_method != Z_DEFLATED ) {
  -                    ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
  +                    ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
                           "inflate: data not deflated!") ;
                       ap_remove_output_filter(f) ;
                       return ap_pass_brigade(f->next, bb) ;