You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2002/05/17 05:05:40 UTC

cvs commit: httpd-2.0/modules/experimental mod_cache.c

stoddard    02/05/16 20:05:40

  Modified:    modules/experimental mod_cache.c
  Log:
  This is a debug message
  
  Revision  Changes    Path
  1.41      +3 -3      httpd-2.0/modules/experimental/mod_cache.c
  
  Index: mod_cache.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_cache.c,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- mod_cache.c	1 Apr 2002 17:13:19 -0000	1.40
  +++ mod_cache.c	17 May 2002 03:05:40 -0000	1.41
  @@ -336,7 +336,7 @@
           return ap_pass_brigade(f->next, bb);
       }
   
  -    ap_log_error(APLOG_MARK, APLOG_DEBUG | APLOG_NOERRNO, 0, r->server,
  +    ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server,
               "cache: running CACHE_OUT filter");
   
       /* TODO: Handle getting errors on either of these calls 
  @@ -348,8 +348,8 @@
       /* This filter is done once it has served up its content */
       ap_remove_output_filter(f);
   
  -    ap_log_error(APLOG_MARK, APLOG_INFO | APLOG_NOERRNO, 0, r->server,
  -            "cached version of %s being served", r->uri);
  +    ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server,
  +            "cache: serving cached version of %s", r->uri);
       return ap_pass_brigade(f->next, bb);
   }